Get sends by domains
Post /statistics/domains
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:
Return count of messages sent through the platform and their status define on the filter
Name | Description | Type | |||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
domain |
An array with information about each email on domain
|
Array |
Programming language:
Request exemple:
1 2 3 4 5 6 7 8 | { "dateBegin" :1454545657, "dateEnd" :1564564564, "froms" :[ "from@example.com" ], "apiKeys" :[], "tags" :[] } |
Response exemple:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | { "gmail.com" : { "error" : 0, "rejected" : 0, "requested" : 1, "deferred" : 0, "scheduled" : 0, "filtered" : 0, "delivered" : 1, "hardbounced" : 0, "softbounced" : 0, "open" : 0, "click" : 0, "read" : 0, "unsubscribed" : 0, "complaint" : 0, "opener" : 0, "clicker" : 0 }, "hotmail.fr" : { "error" : 0, "rejected" : 0, "requested" : 3, "deferred" : 0, "scheduled" : 0, "filtered" : 0, "delivered" : 3, "hardbounced" : 0, "softbounced" : 0, "open" : 2, "click" : 0, "read" : 0, "unsubscribed" : 0, "complaint" : 0, "opener" : 2, "clicker" : 0 }, "yahoo.fr" : { "error" : 0, "rejected" : 0, "requested" : 9, "deferred" : 0, "scheduled" : 0, "filtered" : 0, "delivered" : 8, "hardbounced" : 0, "softbounced" : 0, "open" : 0, "click" : 0, "read" : 0, "unsubscribed" : 0, "complaint" : 0, "opener" : 0, "clicker" : 0 } } |