POST
/
v1
/
incidents
/
{incident_id}
/
status-page-events
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": "3ee0be54-cad5-41c2-b320-66decf6c64e7",
    "type": "incident_status_page_events",
    "attributes": {
      "incident_id": "dbde378d-56f4-4220-a77f-d6749a06a677",
      "status_page_id": "8d7c81ea-db64-4d89-9e8c-9a91dc1a5c25",
      "status": "investigating",
      "notify_subscribers": true,
      "should_tweet": false,
      "started_at": "2025-03-28T23:02:33.087-07:00",
      "created_at": "2025-03-28T23:02:33.087-07:00",
      "updated_at": "2025-03-28T23:02:33.087-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
data
object
required

Response

201
application/vnd.api+json
incident_status_page_event created
data
object
required