> ## 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.

# Remove Suppression

> Remove an email from your suppression list by ID.

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

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the suppression to remove
</ParamField>

## Response

```json 200 theme={null}
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000"
  }
}
```

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.unosend.co/suppressions/550e8400-e29b-41d4-a716-446655440000 \
    -H "Authorization: Bearer un_your_api_key"
  ```

  ```javascript Node.js theme={null}
  const response = await fetch(
    'https://api.unosend.co/suppressions/550e8400-e29b-41d4-a716-446655440000',
    {
      method: 'DELETE',
      headers: {
        'Authorization': 'Bearer un_your_api_key'
      }
    }
  );
  ```

  ```python Python theme={null}
  import requests

  response = requests.delete(
      'https://api.unosend.co/suppressions/550e8400-e29b-41d4-a716-446655440000',
      headers={'Authorization': 'Bearer un_your_api_key'}
  )
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "id": "550e8400-e29b-41d4-a716-446655440000"
    }
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "error": "Suppression not found"
  }
  ```
</ResponseExample>

***

## Remove by Email

You can also remove a suppression by email address using a query parameter:

```bash theme={null}
DELETE /suppressions?email=bounced@example.com
```

<RequestExample>
  ```bash cURL (by email) theme={null}
  curl -X DELETE "https://api.unosend.co/suppressions?email=bounced@example.com" \
    -H "Authorization: Bearer un_your_api_key"
  ```
</RequestExample>

<Note>
  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.
</Note>
