Retrieves a specific status_page_template by id
curl --request GET \
--url https://api.rootly.com/v1/templates/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "631b0967-7a2a-415a-bfea-e9eecc02f8b9",
"type": "status_page_templates",
"attributes": {
"status_page_id": "a37cc234-2ea3-48ff-bbee-66783d91d8d7",
"title": "Cum",
"body": "Quas saepe architecto temporibus.",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-08-29T15:14:24.669-07:00",
"updated_at": "2025-08-29T15:14:24.669-07:00",
"kind": "normal"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
status page template found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/templates/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "631b0967-7a2a-415a-bfea-e9eecc02f8b9",
"type": "status_page_templates",
"attributes": {
"status_page_id": "a37cc234-2ea3-48ff-bbee-66783d91d8d7",
"title": "Cum",
"body": "Quas saepe architecto temporibus.",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-08-29T15:14:24.669-07:00",
"updated_at": "2025-08-29T15:14:24.669-07:00",
"kind": "normal"
}
}
}