disableAccount($session_id, $domain_name, $user_name)
disableAccount should be called when a max md user needs to disable an email account without deleting any data. It basically turns off the permission to retrieve email via the webmail, imap and pop access methods without affecting any data. The user's password will be unaffected as well. A disabled account will be unable to retrieve and read email on the mdEmail server.
It can be retrieved via a soap request using the "disableAccount" method to https://api.max.md.eval.max.md/disableAccount.php?wsdl.
Response
(string) code - A response code. This will be "000" if there is no error
(string) message - A description of the reponse code
(string) values - An array of integers indicating disabled or enabled
0 - Disabled
1 - Enabled
Sample Code (using NuSoap)
$soap = new soapclient("https://api.max.md.eval.max.md/disableAccount.php?wsdl",array( 'trace' => true, 'exceptions' => true, ));
$response= $soap->disableAccount($session_id, $domain_name, $user_name);
if ($response->code == '000') {
echo $response->message;
}else{
echo $response->message;
}
The xml for the WSDL can be found here