Hello,
till told me you need for client_group_id the groupid form sys_group.
I dont wanna use MySQL in a API... i created a new functionfor this in remote.inc.php
PHP Code:
public function client_id_get_SysGroupID($session_id, $client_id){
global $app;
if(!$this->checkPerm($session_id, 'sites_web_domain_get')) {
$this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
return false;
}
$sysGroupID = $app->db->queryOneRecord("SELECT groupid FROM sys_group WHERE client_id = '$client_id'");
return $sysGroupID["groupid"];
}
Recent comments
2 days 15 hours ago
2 days 23 hours ago
3 days 2 hours ago
3 days 4 hours ago
3 days 5 hours ago
3 days 7 hours ago
3 days 8 hours ago
3 days 9 hours ago
4 days 1 hour ago
4 days 2 hours ago