Get Statistics Summary
Retrieve aggregate sending statistics for the current calendar month, plus per-country open and click data.
Retrieve aggregate sending statistics for the current calendar month, plus per-country open and click data.
Scope: statistics.read
Response
aggregateobjectoptionalContains delivered, bounced, opens, clicks, and suppressions as integers.
country_dataobjectoptionalMap of country code to an object with opens and clicks counts.
Sample Response
200 OK
{
"data": {
"aggregate": {
"delivered": 1200,
"bounced": 15,
"opens": 800,
"clicks": 240,
"suppressions": 5
},
"country_data": {
"US": { "opens": 500, "clicks": 150 },
"GB": { "opens": 120, "clicks": 30 }
}
}
}