Creates a new event from provided data
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": "2a698c30-88ea-4b4c-8843-4916c41882d7",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "2740a6ca-2106-4de1-a3ae-7da89e34d61e",
"status_page_id": "adf610fe-968d-44f7-bff2-8de9dd867308",
"status": "investigating",
"notify_subscribers": true,
"should_tweet": false,
"started_at": "2025-08-21T23:33:53.192-07:00",
"created_at": "2025-08-21T23:33:53.192-07:00",
"updated_at": "2025-08-21T23:33:53.192-07:00",
"event": "New Event"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_status_page_event created
The response is of type object
.
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": "2a698c30-88ea-4b4c-8843-4916c41882d7",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "2740a6ca-2106-4de1-a3ae-7da89e34d61e",
"status_page_id": "adf610fe-968d-44f7-bff2-8de9dd867308",
"status": "investigating",
"notify_subscribers": true,
"should_tweet": false,
"started_at": "2025-08-21T23:33:53.192-07:00",
"created_at": "2025-08-21T23:33:53.192-07:00",
"updated_at": "2025-08-21T23:33:53.192-07:00",
"event": "New Event"
}
}
}