Delete a specific incident status page event by id
curl --request DELETE \
--url https://api.rootly.com/v1/status-page-events/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a130be14-bd68-40b5-95e6-331d7091ef4e",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "e0f250a8-d0e7-4797-a336-be0be93505c8",
"status_page_id": "b7448734-4174-4fa3-af89-16222e0a16dc",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-08-19T10:22:43.221-07:00",
"created_at": "2025-08-19T10:22:43.221-07:00",
"updated_at": "2025-08-19T10:22:44.901-07:00",
"event": "Facere ea occaecati dignissimos."
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_status_page_event deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/status-page-events/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a130be14-bd68-40b5-95e6-331d7091ef4e",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "e0f250a8-d0e7-4797-a336-be0be93505c8",
"status_page_id": "b7448734-4174-4fa3-af89-16222e0a16dc",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-08-19T10:22:43.221-07:00",
"created_at": "2025-08-19T10:22:43.221-07:00",
"updated_at": "2025-08-19T10:22:44.901-07:00",
"event": "Facere ea occaecati dignissimos."
}
}
}