.md Productsmd mdEmail® Registration API

(response object) getAuditList($session_id, $domain_name, $username)

An api user can allow one of their clients to list all available audit files. https://api.max.md.eval.max.md/listAudit.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) filelist - An indexed array of filenames available for download.
  (array) size - An indexed array of sizes in Kb. The index will match the cooresponding filename in filelist
  (array) downloads - An indexed array showing number of times a file was downloaded. The index will match the cooresponding filename in filelist.

Sample Code (using NuSoap)

$soap = new soapclient("https://api.max.md.eval.max.md/listAudit.php?wsdl",array( 'trace' => true, 'exceptions' => true, ));
$response = $soap->getAuditList($session_id, $domain_name, $username);
if ($response->code == '000') {
  foreach( $response->values as $filename){
    echo "$filename <br/>";
  }
}else{
  echo $response->message;
}

The xml for the WSDL can be found here