Self Help Documentation
-
Getting Started
-
API functions
-
-
- email/listemailaccounts
- email/changeemailquota
- email/createemailaccount
- email/removeemailaccount
- email/emailaccountpassword
- email/listemailforwarders
- email/addemailforwarder
- email/removeemailforwarder
- email/getmailroute
- email/setmailroute
- email/listemailautoresponders
- email/addemailautoresponder
- email/removeemailautoresponder
- email/editemailautoresponder
- email/togglespamassassin
- email/setspamassassinscore
- email/listspamassassinsenders
- email/addspamassassinsender
- email/removespamassassinsender
- email/getdefaultaddressstatus
- email/setdefaultaddressstatus
- email/listemailfilters
- email/addemailfilter
- email/removeemailfilter
-
- domain/listdomains
- domain/adddomain
- domain/changedomainpath
- domain/changemodsecurity
- domain/removedomain
- domain/listsubdomains
- domain/addsubdomain
- domain/changesubdomainpath
- domain/removesubdomain
- domain/listredirects
- domain/createredirect
- domain/removeredirect
- domain/listdnszone
- domain/adddnsrecord
- domain/editdnszone
-
-
-
- accounts/listaccounts
- accounts/wwwacct
- accounts/changeuserpassword
- accounts/changedomain
- accounts/changeuseremail
- accounts/changequota
- accounts/suspendaccount
- accounts/unsuspendaccount
- accounts/terminateaccount
- accounts/listpackages
- accounts/createpackage
- accounts/modifypackage
- accounts/removepackage
- accounts/grantSSH
- accounts/editprivileges
-
-
WHMCS Provisioning Module
< All Topics
admin/removeadminuser
PostedMarch 2, 2022
UpdatedDecember 3, 2024
Description
Deletes an admin user account.
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|array | Yes | The username of the admin account to delete. An array with multiple admin usernames is supported as well. |
Example
PHP
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
$endpointUrl = 'https://123.123.123.123/spanel/api.php'; $postData = [ 'token' => 'provided_auth_token', 'action' => 'admin/removeadminuser', 'username' => 'testuser@spanel.io', //'username' => ['testuser@spanel.io', 'anothertestuser@spanel.io'], ]; $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 ); |
You can find more information about the Endpoint URL in our API Basics article.
Output
JSON
PHP
1 2 3 4 5 6 |
{ "result": "success", "data": { "msg": "Admin user testuser@spanel.io has been logged out and deleted successfully." } } |
Table of Contents