> ## 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 Batch Suppressions

> Bulk remove multiple email addresses from the suppression list.

Unblock a list of email addresses simultaneously.

### Body Parameters

<ParamField body="emails" type="array">
  List of email strings to remove.
</ParamField>

<ParamField body="ids" type="array">
  List of suppression record ID strings to remove.
</ParamField>

### Response

<ResponseField name="data" type="object">
  <ResponseField name="success" type="boolean">True if executed.</ResponseField>
  <ResponseField name="removedCount" type="number">Count of entries unblocked.</ResponseField>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://api.mailofly.com/api/v1/suppressions/batch/delete \
    -H "Authorization: Bearer mf_live_your_api_key" \
    -H "Content-Type: application/json" \
    -d '{
      "emails": ["user1@domain.invalid", "user2@domain.invalid"]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": {
      "success": true,
      "removedCount": 2
    }
  }
  ```
</ResponseExample>


## Related topics

- [Remove Suppression](/api/suppressions/remove-suppression.md)
- [Add Batch Suppressions](/api/suppressions/add-batch-suppressions.md)
- [Managing the Suppression List](/guides/deliverability/managing-the-suppression-list.md)
- [Batch Sending](/sending/batch-sending.md)
- [Introduction](/sending/introduction.md)
