Delete a specific incident event by id
curl --request DELETE \
--url https://api.rootly.com/v1/events/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "be24ffcb-8fc4-449a-80f7-819ac1ae9081",
"type": "incident_events",
"attributes": {
"event": "Numquam ut mollitia iste.",
"event_raw": "Numquam ut mollitia iste.",
"kind": "event",
"source": "web",
"visibility": "internal",
"user_display_name": "Darin Monahan",
"occurred_at": "2025-08-02T12:37:51.062-07:00",
"starred_at": null,
"created_at": "2025-08-02T12:37:51.062-07:00",
"updated_at": "2025-08-02T12:37:52.988-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_event deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/events/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "be24ffcb-8fc4-449a-80f7-819ac1ae9081",
"type": "incident_events",
"attributes": {
"event": "Numquam ut mollitia iste.",
"event_raw": "Numquam ut mollitia iste.",
"kind": "event",
"source": "web",
"visibility": "internal",
"user_display_name": "Darin Monahan",
"occurred_at": "2025-08-02T12:37:51.062-07:00",
"starred_at": null,
"created_at": "2025-08-02T12:37:51.062-07:00",
"updated_at": "2025-08-02T12:37:52.988-07:00"
}
}
}