Message-ID: <1573707199.15805.1614958236204.JavaMail.confluence@wiki> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_15804_1268827314.1614958236204" ------=_Part_15804_1268827314.1614958236204 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html
Retrieve an individual delivery report (or combined reports), which show= s the current known status of messages sent in a given time period, or for = a particular campaign orcampaigns.
Conversely, the function = getDeliveryReports gets a list of available delivery report names, incl= uding delivery reports for campaigns.
Messages sent with the API can be given a 'tag'. The getDeliveryReport f= unction allows you to specify that tag in order to restrict your search.
See also What =
is a sent message?
To get the contents of a delivery report for the campaign name 'mycampai= gn-020411':
$result =3D $tmClient->getDeliveryReport('mycampaign-020411');=20
To get the delivery report details for 'mycampaign-020411' between 01:00= and 02:00 on 1st Jan 2011:
$result =3D $tmClient->getDeliveryReport('mycampaign-020411', '2011= -01-01T01:00:00+00:00', '2011-01-01T02:00:00+00:00');=20
Or, between 01:00 on 1st Jan 2011 and now:
$result =3D $tmClient->getDeliveryReport('mycampaign-020411', '2011= -01-01T01:00:00+00:00', time());=20
To get delivery report details for all campaigns and API sends between t= he same dates as the previous 2 examples:
$result =3D $tmClient->getDeliveryReport('all', '2011-01-01T01:00:0= 0+00:00', '2011-01-01T02:00:00+00:00'); $result =3D $tmClient->getDeliveryReport('all', '2011-01-01T01:00:00+00:= 00', time());=20
To get a delivery report with the name 'mycampaign-020411', restricted t= o those messages sent with custom tag 'test':
$result =3D $tmClient->getDeliveryReport('mycampaign-020411',= null, null, 'test');=20
To get the status of messages from all delivery reports for messages sen= t with custom tag 'test':
$result =3D $tmClient->getDeliveryReport('all', null, null, '= test');=20
The same as the previous 2 examples, but between 2 dates:
$result =3D $tmClient->getDeliveryReport('mycampaign-020411',= '2011-01-01T01:00:00+00:00', '2011-01-01T02:00:00+00:00', 'test'); $result =3D $tmClient->getDeliveryReport('all', '2011-01-01T01:00:00+00:= 00', time(), 'test');=20
A complete example, including output:
$result =3D $tmClient->getDeliveryReport('all'); foreach ($result as $key =3D> $report) { =09echo "Report number $key: Name {$report['name']}, Last Updated {$re= port['last_updated']} <br/>\n"; foreach ($report['reportrow'] as $key =3D> $reportrow){ =09echo "Message ID: {$reportrow['message_id']}, number:{$reportrow['m= obile_number']}, Status:{$reportrow['status']}, Updated:{$reportrow['last_updated']}<= ;br/>\n"; =09} }=20
Arguments:
string $name:
name of the delivery report to retrieve or 'all' to retrieve all campaig= n/API report data.
string/int $date_start:
(optional) restrict search to be from $date_start (Europe/London time). = String dates should be in ISO 8601 format. Integer dates as Unix timestamp.=
string/int $date_end:
(optional) restrict search to be up to $date_end (Europe/London time). S= tring dates should be in ISO 8601 format. Integer dates as Unix timestamp.<= /p>
string $custom:
(optional) restrict search to those SMS sent with a custom 'tag' (see cu= stom parameter of sendSms function). Up to and including 20, alpha-numeric = characters.
Returns:
an array of arrays. Each nested array represents a delivery report and h= as 4 keys: 'name', 'last_updated', 'extension' and 'reportrow':
Array key | Value |
---|---|
name | String. The name of the delivery report conta=
ining the message statuses. For campaigns sent via the web interface, this =
is the campaign name that way specified. |
last_updated | String. The last time a message delivery stat= us in this delivery report was updated, ISO 8601 format. This allows you to= determine whether there was a change since you last accessed the report.= p> |
extension | DEPRECATED =E2=80=93 this value no longer has= any meaning. |
reportrow | Array. reportrow is an array with keys 'message_= id', 'mobile_number','status' and 'last_updated' (see below). |
reportrow is an array with 4 keys:
Array key | Value |
---|---|
message_id | String. The unique ID of the sent message (di= fferent for each number sent to). |
mobile_number | String. The mobile number that the message wa= s sent to, in international format, e.g. 447000000000. |
status | String. The status of the message delivery.= p> PENDING means the status of the sent message is curre=
ntly unknown. |
last_updated | String. The last time this message delivery s= tatus was updated, ISO8601 format. This allows you to determine whether the= re has been a change since you last accessed the report. |
Specific error codes:
Code | Meaning |
---|---|
0 | The custom value must contain only alpha-numeric= characters |
1 | The custom value must be between 1 and 20 cha= racters in length |
2 | The 'from' and 'to' timestamps must be in ISO= 8601 format |
error code 404 is reported if no delivery reports are found using the sp= ecified search criteria. See General error codes.
You must know!
=20 =20Our example code is an illustra= tion of how you might integrate with our systems and is not certified for p= roduction environments. You are responsible for testing and QA.