Delete a specific template event by id
curl --request DELETE \
--url https://api.rootly.com/v1/templates/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "f900fca7-59b0-4fe5-8acd-026978fb3f08",
"type": "status_page_templates",
"attributes": {
"status_page_id": "728dee41-9393-4b86-9351-d77d195d21cb",
"title": "Officia",
"body": "Quia sapiente ex fugit.",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-09-07T18:24:49.761-07:00",
"updated_at": "2025-09-07T18:24:51.657-07:00",
"kind": "normal"
}
}
}
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/templates/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "f900fca7-59b0-4fe5-8acd-026978fb3f08",
"type": "status_page_templates",
"attributes": {
"status_page_id": "728dee41-9393-4b86-9351-d77d195d21cb",
"title": "Officia",
"body": "Quia sapiente ex fugit.",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-09-07T18:24:49.761-07:00",
"updated_at": "2025-09-07T18:24:51.657-07:00",
"kind": "normal"
}
}
}