(response object) deleteAudit ($session_id, $domain_name, $username, $filename)
An api user can allow one of their clients to delete an audit file. https://api.max.md.eval.max.md/deleteAudit.php?wsdl.
Response
The response comes in a soap object containing three elements.
(string) code - A response code. This will be "000" if the retrieval of the list was successful.
(string) message - A description of the response code
(array) values - The values field is not being used at this time and will be an empty array. It may be used in the future.
Sample Code (using NuSoap)
$soap = new soapclient("https://api.max.md.eval.max.md/deleteAudit.php?wsdl",array( 'trace' => true, 'exceptions' => true, ));
$response = $soap->deleteAudit ($session_id, $domain_name, $username, $filename);
if ($response->code == '000') {
echo $response->message;
}else{
echo $response->message;
}
The xml for the WSDL can be found here