Self Help Documentation
accounts/editprivileges
Description
Updates the permissions of an existing SPanel user account.
Parameters
Additional parameters:
Field | Type | Required | Description |
---|---|---|---|
token | string | Yes | Authorizing API token – check API Basics for more information. |
action | string | Yes | The category and function being executed. |
username | string | Yes | SPanel account username. |
permissions | string|array | No | Permissions array or ‘all’ string for full root permissions. If omitted, full root permissions will be assigned. When using a permissions array, you can set the category sub-array to ‘all’ string to include every child page available or use an array with every page that you wish to include, for example:
|
Info
The structure and an always up-to-date list of all available user permissions can be obtained by running the user/listuserpermissions API call. The list is pulled directly from SPanel’s system in real-time.
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
$endpointUrl = 'https://123.123.123.123/spanel/api.php'; $postData = [ 'token' => 'provided_auth_token', // Check API Basics for more information 'action' => 'user/editprivileges', 'username' => 'spanelio_testuser', //'permissions' => 'all' //Set all permissions 'permissions' => [ 'email' => 'all', //access every email page 'domain' => [ 'domains', 'redirects' ] //access only the 'domains' and 'redirect' pages ] ]; $ch = curl_init(); curl_setopt( $ch, CURLOPT_URL, $endpointUrl); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt( $ch, CURLOPT_POST, true); curl_setopt( $ch, CURLOPT_POSTFIELDS, http_build_query($postData)); curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, false); $jsonOutput = curl_exec( $ch ); |
Output
1 2 3 4 5 6 |
{ "result": "success", "data": { "msg": "Successfully updated account Features Access." } } |