# Delete email suppression

Remove an address from the organization suppression list.

Source: https://statusdashboard.com/docs/api/subscriptions/email/suppression/delete

`DELETE /app/subscribers/email/suppression/{email}`

Removes a suppression entry for the given email address from your organization's list. StatusDashboard clears the entry in full. A `204` response means the address was removed successfully.

Removing an entry allows notification sends to the address again on the next natural event. The platform does **not** auto-resend or trigger follow-up actions. If the address is still invalid, a subsequent hard bounce will re-add the entry.

Requires the `admin` or `subscriber` role and the **Email notifications** feature entitlement.

***

## Path parameters
| Parameter | Type   | Description                                                  |
| --------- | ------ | ------------------------------------------------------------ |
| `email`   | string | Normalized email address to remove from the suppression list |

***

## Request
See [API Basics](/docs/api) for required headers.

***

## Sample request
```bash
curl -X DELETE "https://api.statusdashboard.com/app/subscribers/email/suppression/alice%40acme.com" \
  -H "Authorization: Bearer bcf847abf5c6:def456"
```

## Sample response
**Status: `204 No Content`**

No response body.

***

## Error responses
| Status | When                                                                                          |
| ------ | --------------------------------------------------------------------------------------------- |
| `400`  | Invalid email path parameter                                                                  |
| `403`  | Not admin, or feature disabled                                                                |
| `404`  | Suppression entry not found                                                                   |
| `502`  | StatusDashboard could not complete removal — the entry was **not** removed; retry the request |
