< All Topics

accounts/changequota

Description

Changes the package or update the limits on an existing SPanel account.

Parameters

Additional parameters:

FieldTypeRequiredDescription
usernamestringYesAccount username. between 1 and 30 alphanumeric symbols.
packagestringNoName of the package to use. Note that if a package is selected, the fields below become optional.
quotaintNoDefault: unlimited. If set, quota limit in MB Minimum limit is 100.
inodesintNoDefault: unlimited. If set, inodes limit in number of inodes Minimum limit is 10000.
domainsintNoDefault: unlimited. If set, number of additional domains the user can add. Set 0 to disable additional domains.
emailsintNoDefault: unlimited. If set, number of email accounts the user can create. Set 0 to disable email accounts creation.
databasesintNoDefault: unlimited. If set, number of databases the user can create. Set 0 to disable databases creation.

Example

$endpointUrl = 'https://123.123.123.123/spanel/api.php';

$postData = [
  'token' => 'provided_auth_token', // Check API Basics for more information
  'action' => 'accounts/changequota',
  'username' => 'testuser',
 // Optional options.
  // 'package' => 'packagename' // Optional package field
  'quota' => 10240, // 10GB disk space limit
  'inodes' => 1000, // 1000 inodes limit
  // 'domains' => false, // Unlimited addon domains
  'emails' => 0, // No email accounts allowed
  'databases' => false, // Unlimited databases
];

$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

{
    "result": "success",
    "msg": "Your new limits have been saved successfully"
}
Previous accounts/changeuseremail
Next accounts/suspendaccount
Table of Contents