List blocked email logs

Returns a log of inbound emails that were blocked, optionally filtered by block entry, sender, or date range.

GET
/v1/email/blocks/logs

Returns a log of inbound emails that were blocked, optionally filtered by block entry, sender, or date range.

x-api-key<token>

In: header

Query Parameters

blockedEmailId?|null
fromAddress?string|null
startDate?string|null
endDate?string|null
limit?string|null
offset?string|null

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/email/blocks/logs"
{  "logs": [    {      "id": "string",      "fromAddress": "string",      "toAddress": "string",      "subject": "string",      "blockType": "email",      "blockValue": "string",      "blockReason": "string",      "spfResult": "string",      "dkimResult": "string",      "dmarcResult": "string",      "spamScore": 0,      "blockedAt": "string"    }  ],  "total": 0}