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": "6dbbdace-f53b-4cd1-a7a1-33f80b312575",
"type": "status_page_templates",
"attributes": {
"status_page_id": "e3cd5d74-d1fc-478b-9f61-816e422d4980",
"title": "Earum",
"body": "Possimus reiciendis omnis illum.",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-08-08T21:55:25.099-07:00",
"updated_at": "2025-08-08T21:55:25.099-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": "6dbbdace-f53b-4cd1-a7a1-33f80b312575",
"type": "status_page_templates",
"attributes": {
"status_page_id": "e3cd5d74-d1fc-478b-9f61-816e422d4980",
"title": "Earum",
"body": "Possimus reiciendis omnis illum.",
"update_status": null,
"should_notify_subscribers": false,
"position": 1,
"enabled": true,
"created_at": "2025-08-08T21:55:25.099-07:00",
"updated_at": "2025-08-08T21:55:25.099-07:00",
"kind": "normal"
}
}
}