Update a specific template event by id
curl --request PUT \
--url https://api.rootly.com/v1/templates/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"status_page_id": "<string>",
"title": "<string>",
"body": "<string>",
"update_status": "<string>",
"kind": "normal",
"should_notify_subscribers": true,
"enabled": true,
"position": 123,
"created_at": "<string>",
"updated_at": "<string>"
}'
{
"data": {
"id": "8a921f0b-d5fb-4a66-b634-f9a7ab8afc15",
"type": "status_page_templates",
"attributes": {
"status_page_id": "0056e9a5-07e5-4381-8478-135c86ba6462",
"title": "Update template title",
"body": "Update template body",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-07-21T23:23:15.531-07:00",
"updated_at": "2025-07-21T23:23:17.296-07:00",
"kind": "normal"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_event updated
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/templates/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"status_page_id": "<string>",
"title": "<string>",
"body": "<string>",
"update_status": "<string>",
"kind": "normal",
"should_notify_subscribers": true,
"enabled": true,
"position": 123,
"created_at": "<string>",
"updated_at": "<string>"
}'
{
"data": {
"id": "8a921f0b-d5fb-4a66-b634-f9a7ab8afc15",
"type": "status_page_templates",
"attributes": {
"status_page_id": "0056e9a5-07e5-4381-8478-135c86ba6462",
"title": "Update template title",
"body": "Update template body",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-07-21T23:23:15.531-07:00",
"updated_at": "2025-07-21T23:23:17.296-07:00",
"kind": "normal"
}
}
}