Skip to main content
DELETE
/
suppressions
/
:id
curl -X DELETE https://api.unosend.co/suppressions/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: Bearer un_your_api_key"
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.unosend.co/llms.txt

Use this file to discover all available pages before exploring further.

Be careful when removing hard bounce or spam complaint suppressions. Sending to these addresses again may harm your sender reputation and deliverability.

Path Parameters

id
string
required
The unique identifier of the suppression to remove

Response

200
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000"
  }
}
curl -X DELETE https://api.unosend.co/suppressions/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: Bearer un_your_api_key"
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000"
  }
}

Remove by Email

You can also remove a suppression by email address using a query parameter:
DELETE /suppressions?email=bounced@example.com
curl -X DELETE "https://api.unosend.co/suppressions?email=bounced@example.com" \
  -H "Authorization: Bearer un_your_api_key"
Removing a suppression allows you to send emails to that address again. The email may get re-suppressed if it bounces or receives a complaint.