Remove dashboard email sender
Remove the custom notification email sender from a dashboard.
DELETE /app/dashboards/{id}/branding/email-sender
Removes the email sender configuration for this dashboard. Notification emails revert to the platform default sender.
Requires the Custom Branding feature entitlement and admin role.
If other dashboards in your organization still use the same sending domain, the domain verification is preserved for those dashboards. When this dashboard is the last reference to the domain, status changes to removing while cleanup runs asynchronously — poll Get dashboard email sender until status is unset. Calling DELETE again while status is removing returns 204 and re-queues cleanup (safe if a prior cleanup enqueue failed).
Path parameters
| Parameter | Description |
|---|---|
id | The UUID of the dashboard. |
Request
See API Basics for required headers.
This endpoint takes no request body.
Sample request
curl -X DELETE https://api.statusdashboard.com/app/dashboards/a1b2c3d4-e5f6-7890-abcd-ef1234567890/branding/email-sender \
-H "Authorization: Bearer bcf847abf5c6:def456"Sample response
Status: 204 No Content
Empty body on success.
Error responses
| Status | When |
|---|---|
403 | Insufficient permissions, or the Custom Branding feature is not enabled. |
404 | Dashboard not found or does not belong to the caller's organization. |

