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": "e6fc2e20-6a3a-414d-89fb-fd644ed545e6",
    "type": "incident_status_page_events",
    "attributes": {
      "incident_id": "8cc3c508-8f8e-4a7a-8537-4f5409300b65",
      "status_page_id": "3678c2e2-b694-419a-8c7f-3f16e338c0a9",
      "status": "investigating",
      "notify_subscribers": true,
      "should_tweet": false,
      "started_at": "2025-04-18T18:20:27.138-07:00",
      "created_at": "2025-04-18T18:20:27.138-07:00",
      "updated_at": "2025-04-18T18:20:27.138-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