List suppressed addresses
GET/api/v1/api/v1/suppressions
curl -X GET 'https://www.unitpost.com/api/v1/api/v1/suppressions' \
-H 'Authorization: Bearer YOUR_API_KEY'{
"object": "list",
"has_more": false,
"data": [
{
"object": "suppression",
"id": "id_123",
"email": "customer@example.com",
"scope": "workspace",
"reason": "bounce",
"detail": "string",
"note": "string",
"created_at": "2026-01-01T00:00:00.000Z",
"updated_at": "2026-01-01T00:00:00.000Z"
}
]
}Retrieve a list of email addresses that are blocked from receiving your mail, newest-first and cursor-paginated. The list includes your workspace's own suppressions AND the read-only Unitpost-wide (platform) entries that would block a send — so it's the complete answer to "why isn't this address getting mail?". Pass ?scope=workspace to hide platform rows. Add an address with Suppress an address or lift a block with Un-suppress an address. Requires the suppressions:read capability.
Parameters4 fields
| Field | Type | Description |
|---|---|---|
limit | integer · query | Max rows to return (default 20, max 100). |
after | string · query | Return rows after this id (forward paging). |
before | string · query | Return rows before this id (backward paging). |
scope | string · query | Filter by scope. `workspace` returns only your own suppressions; omit (or any other value) to also include read-only `platform` rows. |
Response · 200 fields9 fields
| Field | Type | Description |
|---|---|---|
objectrequired | string | — |
idrequired | string | — |
emailrequired | string | — |
scoperequired | enumworkspace | platform | — |
reasonrequired | enumbounce | complaint | unsubscribe | manual | import | api | — |
detailrequired | object | — |
noterequired | object | — |
created_atrequired | string | — |
updated_atrequired | string | — |