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": "5e9a0bf9-61f6-4d95-b98f-c1fa0a7c0a13",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "6dafa1c7-b68f-4db1-aa33-2ade522dae43",
"status_page_id": "60a12489-e6dd-4a90-a969-a70042c2046b",
"status": "investigating",
"notify_subscribers": true,
"should_tweet": false,
"started_at": "2026-01-25T11:06:16.278-08:00",
"created_at": "2026-01-25T11:06:16.278-08:00",
"updated_at": "2026-01-25T11:06:16.278-08:00",
"event": "New Event"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_status_page_event created
Show child attributes
Was this page helpful?
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": "5e9a0bf9-61f6-4d95-b98f-c1fa0a7c0a13",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "6dafa1c7-b68f-4db1-aa33-2ade522dae43",
"status_page_id": "60a12489-e6dd-4a90-a969-a70042c2046b",
"status": "investigating",
"notify_subscribers": true,
"should_tweet": false,
"started_at": "2026-01-25T11:06:16.278-08:00",
"created_at": "2026-01-25T11:06:16.278-08:00",
"updated_at": "2026-01-25T11:06:16.278-08:00",
"event": "New Event"
}
}
}