Xurel Docs

Suppressions

Xurel will not deliver to suppressed addresses. Hard bounces and complaints are added automatically.

List suppressions

GET /v1/suppressions
200
{
  "data": [
    {
      "id": "sup_01",
      "email": "bad@example.com",
      "reason": "bounce",
      "createdAt": "2026-07-01T12:00:00Z"
    }
  ],
  "hasMore": false
}

Add suppression

POST /v1/suppressions
Field Type Required Description
email string Required Address to suppress.
reason string Optional manual, bounce, complaint, unsubscribe.

Remove suppression

DELETE /v1/suppressions/{id}