Get bounces
Post /statistics/bounces
Introduction
Get all datas provided by your sent aggregated per day
Parameters:
Name | Description | Type | Mandatory |
---|---|---|---|
dateBegin | Date begin on YYYY-MM-ddThh:mm:ss format | Int | No |
dateEnd | Date end on YYYY-MM-ddThh:mm:ss format | Int | No |
froms | Array of Senders email | Array | No |
apiKeys | Array of api keys | Array | No |
tags | Array of tags | Array | No |
Response:
Name | Description | Type | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
date |
An array with information about each bounce return on date
|
String |
Programming language:
Request exemple:
1 2 3 4 5 | { "dateBegin" : 1454545657, "dateEnd" : 1564564564 } |
Response exemple:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | { "1438387200" : { "requested" : 7689, "hardbounced" : 36, "softbounced" : 3479 }, "1441065600" : { "requested" : 58, "hardbounced" : 1, "softbounced" : 19 }, "1443657600" : { "requested" : 196, "hardbounced" : 7, "softbounced" : 10 } } |