We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm doing tests with the xmlapi.php and trying to use the getdiskusage function
The documentation http://docs.cpanel.net/twiki/bin/view/ApiDocs/Api2/ApiEmail#Email::getdiskusage says that the input parameters are domain and login but didn't work when trying to acces
$opts = array( 'domain' => "domain.com", 'login' => "mail-user", ); print $xmlapi->api2_query($server_login, "Email", "getdiskusage", $opts);
Returns:
{ cpanelresult: { data: [ { user: null, domain: "domain.com", login: null, diskused: "0" } ], module: "Email", apiversion: 2, func: "getdiskusage", event: { result: 1 } } }
But when i use the paramters user instead of login it works OK
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm doing tests with the xmlapi.php and trying to use the getdiskusage function
The documentation http://docs.cpanel.net/twiki/bin/view/ApiDocs/Api2/ApiEmail#Email::getdiskusage says that the input parameters are domain and login but didn't work when trying to acces
Returns:
But when i use the paramters user instead of login it works OK
The text was updated successfully, but these errors were encountered: