# Delete email subscriber

Remove an email subscription from a dashboard.

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

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

Permanently removes a subscriber record for the given dashboard and email address.

If this was the subscriber's last subscription (pending or verified) in the organization, the unique-email quota slot is released.

***

## Path parameters
| Parameter     | Type   | Description                           |
| ------------- | ------ | ------------------------------------- |
| `dashboardId` | uuid   | Dashboard the subscription belongs to |
| `email`       | string | Normalized subscriber email address   |

***

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

***

## Sample request
```bash
curl -X DELETE "https://api.statusdashboard.com/app/subscribers/email/subscribers/a1b2c3d4-e5f6-7890-abcd-ef1234567890/alice@acme.com" \
  -H "Authorization: Bearer bcf847abf5c6:def456"
```

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

No response body.

***

## Error responses
| Status | When                                                   |
| ------ | ------------------------------------------------------ |
| `400`  | Invalid path parameters                                |
| `403`  | Requires admin or subscriber role, or feature disabled |
| `404`  | Subscriber not found                                   |
