Create a Monitor

POST /api/0/organizations/{organization_slug}/monitors/

Create a new monitor.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization the resource belongs to.

Body Parameters

name (string)
REQUIRED

Name of the monitor. Used for notifications.

type (string)
REQUIRED
  • cron_job - cron_job
slug (string)

Uniquely identifies your monitor within your organization. Changing this slug will require updates to any instrumented check-in calls.

status (string)

Status of the monitor. Disabled monitors will not accept events and will not count towards the monitor quota.

  • active - active
  • disabled - disabled
owner (string)

The ID of the team or user that owns the monitor. (eg. user:51 or team:6)

is_muted (boolean)

Disable creation of monitor incidents

Scopes

<auth_token> requires one of the following scopes:
  • org:admin
  • org:read
  • org:write
curl https://sentry.io/api/0/organizations/{organization_slug}/monitors/ \
 -H 'Authorization: Bearer <auth_token>' \
 -H 'Content-Type: application/json' \
 -d '{}'
RESPONSESCHEMA
.