Create a new check-in

POST /api/0/organization/{organization_slug}/monitors/{monitor_slug}/checkins/

Creates a new check-in for a monitor.

If status is not present, it will be assumed that the check-in is starting, and be marked as in_progress.

To achieve a ping-like behavior, you can simply define status and optionally duration and this check-in will be automatically marked as finished.

Note: If a DSN is utilized for authentication, the response will be limited in details.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization the resource belongs to.

monitor_slug (string)
REQUIRED

The slug of the monitor

Scopes

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