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": "6107e75d-ba37-40f0-8df1-69bd42a8899b",
    "type": "incident_status_page_events",
    "attributes": {
      "incident_id": "330cf0cf-8f1c-4068-94d0-544fd3a36615",
      "status_page_id": "9c1bacf8-a0f1-434f-a649-abe3226c5840",
      "status": "investigating",
      "notify_subscribers": true,
      "should_tweet": false,
      "started_at": "2025-08-01T11:09:30.370-07:00",
      "created_at": "2025-08-01T11:09:30.370-07:00",
      "updated_at": "2025-08-01T11:09:30.370-07: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

Response

201
application/vnd.api+json

incident_status_page_event created

The response is of type object.