Get Job Report Detail
Get Job Report in XML formatted string.
Function
getJobReportDetail()
Parameters
- username:
String
- Account login name.
- password:
String
- Account password.
- jobId:
int
- Job ID
- type:
int
- Report type. Value:
2
: Clickthru3
: Total opens4
: Opt out8
: Permanent bounce9
: Temporary bounce10
: Blocked bounce36
: Feedback loop complaints38
: Queued40
: Delivered
- Report type. Value:
- offset:
int
- Start offset of the results.
- limit:
int
- Maximum number of display results.
Return
String
:- Returns standard job report detail represented as a XML formatted string.
Exception
- Exception
Documentation
- Returns standard job report represented as a XML formatted string.
Examples
public void getJobReportDetail() throws java.lang.Exception {
Puresend p = new Puresend();
PuresendPortType port = p.getPuresendHttpsSoap12Endpoint();
String username = "XXX";
String password = "XXX";
int jobId = 123;
String result = port.getJobReportDetail(username, password, jobId, 2, 0, 10);
}
<?php
include 'puresend.php';
$p = new Puresend();
$getJobReportDetailData = new getJobReportDetail();
$getJobReportDetailData->username = 'XXX';
$getJobReportDetailData->password = 'XXX';
$getJobReportDetailData->jobId = 123;
$getJobReportDetailData->type = 2;
$response = $p->getJobReportDetail($getJobReportDetailData);
var_dump($response);
?>