Suppressions
Your account-wide do-not-send list. Accepts API keys, so apps can sync unsubscribes programmatically.
List suppressions
GET /suppressions
| Field | Type | Description |
|---|---|---|
| q | query | Substring match on the address. |
| limit / offset | query | Pagination (limit ≤ 100). |
Response
{"total": 42, "data": [{"id": "sup_...", "email": "ada@example.com",
"reason": "bounce", "created_at": "..."}, ...]}Add a suppression
POST /suppressions
| Field | Type | Description |
|---|---|---|
| emailrequired | string | The address to block. |
| reason | string | One of manual, bounce, complaint. Default manual. |
Remove a suppression
DELETE /suppressions/:id
Removing a suppression makes the address mailable again — see the guidefor when that's safe.