Delete a Monitor

DELETE /api/0/organizations/{organization_id_or_slug}/detectors/{detector_id}/

Delete a monitor

Path Parameters

organization_id_or_slug (string)
REQUIRED

The ID or slug of the organization the resource belongs to.

detector_id (integer)
REQUIRED

The ID of the monitor you'd like to query.

Scopes

<auth_token> requires one of the following scopes:
  • alerts:write
  • org:admin
  • org:read
  • org:write
Copied
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/detectors/{detector_id}/ \
 -H 'Authorization: Bearer <auth_token>' \
 -X DELETE
RESPONSE
Copied
No Content.
Was this helpful?