SUMMARY
REST API Method: SUMMARY
Returns a list of authentication results by date.
URL:
https://api.mailmonitorapp.com/mma/dmarc/summary
HTTP Method(s):
GET
Query String Parameters:
days - Integer. Required
page - Integer. Required
limit - Integer. Required
domain - String. Optional
reportId - String. Optional
Examples:
https://api.mailmonitorapp.com/mma/dmarc/summary?days=7&page=0&limit=100
Response:
JSON example response:
{
{
"reports": [
{
"dateReport": "2021-09-09T00:00:00Z",
"domain": "botco.ai",
"domainId": 3,
"totalDkimFail": 0,
"totalDkimPass": 6,
"totalDmarcFail": 2,
"totalDmarcPass": 6,
"totalEmails": 8,
"totalSpfFail": 0,
"totalSpfPass": 8
},
{
"dateReport": "2021-09-09T00:00:00Z",
"domain": "news.mailmonitor.com",
"domainId": 17,
"totalDkimFail": 0,
"totalDkimPass": 103,
"totalDmarcFail": 0,
"totalDmarcPass": 103,
"totalEmails": 103,
"totalSpfFail": 0,
"totalSpfPass": 103
}
],
"totalRecords": 2
}
}