Delete a specific template event by id
curl --request DELETE \
--url https://api.rootly.com/v1/templates/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "6eabbaad-84e3-4da5-842d-afe88b3fb814",
"type": "status_page_templates",
"attributes": {
"status_page_id": "6203d04d-743d-4f83-8135-d059fb226335",
"title": "Commodi",
"body": "Et voluptatem facere nisi.",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-07-29T08:11:24.930-07:00",
"updated_at": "2025-07-29T08:11:27.164-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": "6eabbaad-84e3-4da5-842d-afe88b3fb814",
"type": "status_page_templates",
"attributes": {
"status_page_id": "6203d04d-743d-4f83-8135-d059fb226335",
"title": "Commodi",
"body": "Et voluptatem facere nisi.",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-07-29T08:11:24.930-07:00",
"updated_at": "2025-07-29T08:11:27.164-07:00",
"kind": "normal"
}
}
}