(response object) downloadAudit ($session_id, $domain_name, $username, $filename)
An api user can allow one of their clients to download an audit file. https://api.max.md.eval.max.md/downloadAudit.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 first element in the array will be a url (with parameters) from which a download can be retrieved.
Sample Code (using NuSoap)
$soap = new soapclient("https://api.max.md.eval.max.md/downloadAudit.php?wsdl",array( 'trace' => true, 'exceptions' => true, ));
$response = $soap->downloadAudit ($session_id, $domain_name, $username, $filename);
if ($response->code == '000') {
$response->values[0] will contain a url. The url will contain the location of the file.
}else{
echo $response->message;
}
The xml for the WSDL can be found here
Alternate Sample Code
You may also generate a link to the file by constructing the following url:
https://api.max.md/download.php?session_id={A_VALID_SESSION_ID}&domain={YOUR_DOMAIN}&emailUser={EMAIL_USERNAME}&file={FILENAME}