Skip to main content
PATCH
/
incidents
/
{id}
curl -X PATCH "https://kodostatus.com/api/v1/incidents/inc_abc123" \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "status": "identified",
    "message": "We have identified the root cause"
  }'
{
  "id": "uuid",
  "title": "Database connectivity issues",
  "status": "identified",
  "severity": "major"
}

Path Parameters

id
string
required
The incident ID

Body Parameters

status
string
New status: investigating, identified, monitoring, resolved
message
string
Update message to add to the incident timeline
severity
string
Updated severity: minor, major, critical

Response

Returns the updated incident object.
curl -X PATCH "https://kodostatus.com/api/v1/incidents/inc_abc123" \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "status": "identified",
    "message": "We have identified the root cause"
  }'
{
  "id": "uuid",
  "title": "Database connectivity issues",
  "status": "identified",
  "severity": "major"
}