> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mailofly.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Suppression

> Remove an email address from your suppression list.

Unblock an address so future emails can be delivered to it again.

### Path Parameters

<ParamField path="id" type="string" required>
  The suppression record ID or the target email address to remove.
</ParamField>

### Response

<ResponseField name="data" type="object">
  <ResponseField name="success" type="boolean">True if removed.</ResponseField>
  <ResponseField name="id" type="string">Target ID or email.</ResponseField>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.mailofly.com/api/v1/suppressions/baduser@example.com \
    -H "Authorization: Bearer mf_live_your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": {
      "success": true,
      "id": "baduser@example.com"
    }
  }
  ```
</ResponseExample>


## Related topics

- [Remove Batch Suppressions](/api/suppressions/remove-batch-suppressions.md)
- [Managing the Suppression List](/guides/deliverability/managing-the-suppression-list.md)
- [Contacts](/audience/contacts.md)
- [Retrieve Suppression](/api/suppressions/retrieve-suppression.md)
- [Add Suppression](/api/suppressions/add-suppression.md)
