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": "9fbbf06e-507b-4aa2-bfcb-4cb437442292",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "eee87081-2125-45a0-83e5-98c437a66d11",
"status_page_id": "b6329fcf-3566-4f9b-aadd-ef615b7928cd",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-09-08T13:47:16.776-07:00",
"created_at": "2025-09-08T13:47:16.776-07:00",
"updated_at": "2025-09-08T13:47:18.304-07:00",
"event": "Sit tenetur qui autem."
}
}
}
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": "9fbbf06e-507b-4aa2-bfcb-4cb437442292",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "eee87081-2125-45a0-83e5-98c437a66d11",
"status_page_id": "b6329fcf-3566-4f9b-aadd-ef615b7928cd",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-09-08T13:47:16.776-07:00",
"created_at": "2025-09-08T13:47:16.776-07:00",
"updated_at": "2025-09-08T13:47:18.304-07:00",
"event": "Sit tenetur qui autem."
}
}
}