v2

latestOpenAPI 3.0.02026-07-261859071.2 MB
Incident Updates

Update an incident update

Modifies an incident update.

put/v1/incidents/{incidentId}/updates/{id}

Path parameters

idstring required
incidentIdstring required

Headers

x-checkly-accountstring

Your Checkly account ID, you can find it at https://app.checklyhq.com/settings/account/general

Your Checkly account ID, you can find it at https://app.checklyhq.com/settings/account/general

Request body

descriptionstring required

A description about the status update.

Example request

{
  "description": "We found the issue and we are working on it."
}

Response

Successful

status'INVESTIGATING' | 'IDENTIFIED' | 'MONITORING' | 'RESOLVED' | 'MAINTENANCE' required

The incident update status. Must be one of INVESTIGATING,IDENTIFIED,MONITORING,RESOLVED,MAINTENANCE

descriptionstring required

A description about the status update.

idstring required

The incident update universal and unique identificator.

created_atstring date-time required

The timestamp when the incident update was created.

updated_atstring date-time nullable required

The timestamp when last the update.

Example response

{
  "status": "INVESTIGATING",
  "description": "We found the issue and we are working on it.",
  "id": "e50ad839-1b90-4955-b716-1c6edbda57cb",
  "created_at": "2022-09-08T19:41:28.658Z",
  "updated_at": "2022-09-08T20:41:28.658Z"
}