Suppressions

Your account-wide do-not-send list. Accepts API keys, so apps can sync unsubscribes programmatically.

List suppressions

GET /suppressions

FieldTypeDescription
qquerySubstring match on the address.
limit / offsetqueryPagination (limit ≤ 100).
Response
{"total": 42, "data": [{"id": "sup_...", "email": "ada@example.com",
  "reason": "bounce", "created_at": "..."}, ...]}

Add a suppression

POST /suppressions

FieldTypeDescription
emailrequiredstringThe address to block.
reasonstringOne 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.