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": "4e1209eb-c432-44cb-99f0-84b883518dc7",
"type": "status_page_templates",
"attributes": {
"status_page_id": "8965b1f3-73b6-4043-a329-95dd29043906",
"title": "Eaque",
"body": "Incidunt asperiores nisi accusantium.",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-07-20T00:43:43.103-07:00",
"updated_at": "2025-07-20T00:43:43.103-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": "4e1209eb-c432-44cb-99f0-84b883518dc7",
"type": "status_page_templates",
"attributes": {
"status_page_id": "8965b1f3-73b6-4043-a329-95dd29043906",
"title": "Eaque",
"body": "Incidunt asperiores nisi accusantium.",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-07-20T00:43:43.103-07:00",
"updated_at": "2025-07-20T00:43:43.103-07:00",
"kind": "normal"
}
}
}