Skip to main content
POST
/
v1
/
incidents
/
{incident_id}
/
status-page-events
Creates an incident status page event
curl --request POST \
  --url https://api.rootly.com/v1/incidents/{incident_id}/status-page-events \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "type": "incident_status_page_events",
    "attributes": {
      "event": "<string>",
      "status_page_id": "<string>",
      "status": "investigating",
      "notify_subscribers": false,
      "should_tweet": false
    }
  }
}
'
{
  "data": {
    "id": "79ecf7dc-0580-4c2b-87b7-870b2f83f3fc",
    "type": "incident_status_page_events",
    "attributes": {
      "incident_id": "0067db7f-18dc-4ad2-8f89-496ee6d54203",
      "status_page_id": "737f2950-f74a-4427-9f62-9390efe304e3",
      "status": "investigating",
      "notify_subscribers": true,
      "should_tweet": false,
      "started_at": "2026-02-13T18:08:18.703-08:00",
      "created_at": "2026-02-13T18:08:18.703-08:00",
      "updated_at": "2026-02-13T18:08:18.703-08:00",
      "event": "New Event"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

incident_id
string
required

Body

application/vnd.api+json
data
object
required

Response

incident_status_page_event created

data
object
required