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": "802e4087-e1f1-4851-a2cf-ce08cc2e4d80",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "0d3a2f6a-d085-4976-a101-2311c1ee2611",
"status_page_id": "2d746976-32e2-4178-853b-c64149c1d3e4",
"status": "investigating",
"notify_subscribers": true,
"should_tweet": false,
"started_at": "2025-09-10T23:02:29.215-07:00",
"created_at": "2025-09-10T23:02:29.215-07:00",
"updated_at": "2025-09-10T23:02:29.215-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": "802e4087-e1f1-4851-a2cf-ce08cc2e4d80",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "0d3a2f6a-d085-4976-a101-2311c1ee2611",
"status_page_id": "2d746976-32e2-4178-853b-c64149c1d3e4",
"status": "investigating",
"notify_subscribers": true,
"should_tweet": false,
"started_at": "2025-09-10T23:02:29.215-07:00",
"created_at": "2025-09-10T23:02:29.215-07:00",
"updated_at": "2025-09-10T23:02:29.215-07:00",
"event": "New Event"
}
}
}