Skip to main content
POST
/
api
/
v1
/
status-pages
/
{id}
/
incidents
/
{incidentId}
/
updates
Post an incident timeline update
curl --request POST \
  --url https://api.devhelm.io/api/v1/status-pages/{id}/incidents/{incidentId}/updates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "INVESTIGATING",
  "body": "<string>",
  "notifySubscribers": true,
  "affectedComponents": [
    {
      "componentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "OPERATIONAL"
    }
  ]
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "statusPageId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "title": "<string>",
    "status": "INVESTIGATING",
    "impact": "NONE",
    "scheduled": true,
    "autoResolve": true,
    "startedAt": "2023-11-07T05:31:56Z",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "scheduledFor": "2023-11-07T05:31:56Z",
    "scheduledUntil": "2023-11-07T05:31:56Z",
    "incidentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "publishedAt": "2023-11-07T05:31:56Z",
    "resolvedAt": "2023-11-07T05:31:56Z",
    "createdByUserId": 123,
    "postmortemBody": "<string>",
    "postmortemUrl": "<string>",
    "affectedComponents": [
      {
        "statusPageComponentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "componentStatus": "OPERATIONAL",
        "componentName": "<string>"
      }
    ],
    "updates": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "status": "INVESTIGATING",
        "body": "<string>",
        "createdBy": "USER",
        "notifySubscribers": true,
        "createdAt": "2023-11-07T05:31:56Z",
        "createdByUserId": 123
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key (dh_live_...) or Auth0 JWT token

Path Parameters

id
string<uuid>
required
incidentId
string<uuid>
required

Body

application/json
status
enum<string>
required

Incident status at this point in the timeline

Available options:
INVESTIGATING,
IDENTIFIED,
MONITORING,
RESOLVED
body
string
required

Update body in markdown

Minimum string length: 1
notifySubscribers
boolean | null

Whether to email confirmed subscribers about this update (default: true)

affectedComponents
object[] | null

Updated affected components; null preserves current

Response

201 - */*

Created

data
object
required