Update an incident
Adds an update to an ongoing incident, and optionally changes its title or status. You can also resolve an incident by setting `resolution_stage` to `resolved`.
Path parameters
Parameter
Type
Required
Description
Request body
Parameter
Type
Required
Description
Example request — post an update
curl -X PATCH https://api.isdown.app/api/v2/incidents/55001 \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"description": "We have identified the root cause and are deploying a fix.",
"resolution_stage": "identified",
"status": "minor"
}'Example request — resolve an incident
Example response
Last updated