Skip to main content
PATCH
/
incidents
/
{id}
Update an incident
curl --request PATCH \
  --url https://api.example.com/incidents/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "status": "investigating",
  "severity": "medium",
  "monitorId": "<string>",
  "projectId": "<string>",
  "startedAt": "Current timestamp"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
title
string

The title of the incident

description
string

The description of the incident

status
enum<string>
default:investigating

The status of the incident

Available options:
investigating,
identified,
monitoring,
resolved
severity
enum<string>
default:medium

The severity of the incident

Available options:
low,
medium,
high,
critical
monitorId
string

The ID of the monitor associated with this incident

projectId
string

The ID of the project associated with this incident

startedAt
string<date-time>
default:Current timestamp

The start time of the incident

Response

200 - application/json

The incident has been successfully updated.

The response is of type object.