Remove a suppression

DELETE/v1/suppressions/{id}

Secret key — sk_… or sk_test_… · Base URL https://api.volanea.com

Removes an address from the do-not-send list, making it mailable again.

Read the reason before calling this. Clearing an unsubscribe you know was a mistake is routine. Clearing a bounce or complaint means deliberately re-sending to an address that already hard-bounced or pressed "report spam", which is the behaviour mailbox providers measure you on — the entry is protecting your sending reputation, not obstructing you.

Provider-generated suppressions come back on their own: the next bounce or complaint re-creates the entry.

Path parameters

  • idstringrequired

    Suppression id.

Response

Removed.

  • successbooleanrequired

Errors

Every failure returns the standard envelope — branch on `code`, never on the wording of `error`.

  • 401Missing or invalid API key.
  • 404Not found.
  • 422Request validation failed (code `validation_error`, 422).

Request

curl https://api.volanea.com/v1/suppressions/id_123 \
  -X DELETE \
  -H "Authorization: Bearer sk_..."

Response

200 · application/json

{
  "success": true,
  "data": {
    "success": true
  }
}

92 endpoints · OpenAPI document