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": "42262ef1-e92c-4b44-a256-e11e35bf40fa",
    "type": "incident_status_page_events",
    "attributes": {
      "incident_id": "a43debfd-ebaf-4e2e-b8a0-3d1ce0526f5e",
      "status_page_id": "f447be9f-a3f4-41c1-88b3-50d9064474b1",
      "status": "investigating",
      "notify_subscribers": true,
      "should_tweet": false,
      "started_at": "2025-07-11T12:27:59.976-07:00",
      "created_at": "2025-07-11T12:27:59.976-07:00",
      "updated_at": "2025-07-11T12:27:59.976-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.