Get Job Report
Get Job Report in XML formatted string.
Function
getJobReport()
Parameters
- username:
String
- Account login name.
- password:
String
- Account password.
- jobId:
int
- Job ID
Return
String
:- Job report in XML format
Exception
- Exception
Documentation
- Returns standard job report represented as a XML formatted string.
Examples
public void getJobReport() throws java.lang.Exception {
Puresend p = new Puresend();
PuresendPortType port = p.getPuresendHttpsSoap12Endpoint();
String username = "XXX";
String password = "XXX";
int jobId = 123;
String result = port.getJobReport(username, password, jobId);
}
<?php
include 'puresend.php';
$p = new Puresend();
$getJobReportData = new getJobReport();
$getJobReportData->username = 'XXX';
$getJobReportData->password = 'XXX';
$getJobReportData->jobId = 123;
$response = $p->getJobReport($getJobReportData);
var_dump($response);
?>