Transactional emails
Get your transactional email activity aggregated per day
get/smtp/statistics/reports
Query parameters
limitinteger
Number of documents returned per page
offsetinteger
Index of the first document on the page
startDatestring
Mandatory if endDate is used. Starting date of the report (YYYY-MM-DD)
endDatestring
Mandatory if startDate is used. Ending date of the report (YYYY-MM-DD)
daysinteger
Number of days in the past including today (positive integer). Not compatible with 'startDate' and 'endDate'
tagstring
Tag of the emails
sort'asc' | 'desc'
Sort the results in the ascending/descending order of record creation. Default order is descending if sort is not passed
Response
Aggregated report informations
Example response
{
"reports": [
{
"date": "2017-04-06",
"requests": 65,
"delivered": 63,
"hardBounces": 1,
"softBounces": 1,
"clicks": 6,
"uniqueClicks": 5,
"opens": 58,
"uniqueOpens": 52
}
]
}