(response object) zipAudit($session_id, $domain_name, $username)
An api user can allow one of their clients to audit an individual email account zipAudit. https://api.max.md.eval.max.md/zipAudit.php?wsdl.
Response
The response comes in a soap object containing three elements.
(string) code - A response code. This will be "000" if the audit was successful
(string) message - A description of the response code
(array) values - The first element of the array will be a detailed description of the audit results.
Sample Code (using NuSoap)
$soap = new soapclient("https://api.max.md.eval.max.md/zipAudit.php?wsdl",array( 'trace' => true, 'exceptions' => true, ));
$response = $soap->zipAudit($session_id, $domain_name, $username);
if ($response->code == '000') {
//code for when a user is valid;
}else{
echo $response->message;
}
The xml for the WSDL can be found here