Documentation Index
Fetch the complete documentation index at: https://docs.particle.pro/llms.txt
Use this file to discover all available pages before exploring further.
| HTTP status | 409 Conflict |
| Error code | notification_email_in_use |
| Resolve action | edit_monitor_notifications |
What happened
You tried to delete a notification email that is still listed as a delivery target on one or more monitors in the organization. The system refuses to remove it so monitors don’t silently stop delivering.How to fix
Monitors are project-scoped, not org-scoped, so locating every monitor that references the email is a two-step traversal: list the org’s projects, then list monitors per project.For each project, list its monitors:
GET /v1/projects/{projectId}/monitors. Inspect each monitor’s notifications array for the email you’re deleting.For each monitor that references the email,
PATCH /v1/monitors/{id} with a new notifications payload that omits it.{baseURL}/organizations/{orgId}/monitors and remove the email from each affected monitor there.