List status page templates
curl --request GET \
--url https://api.rootly.com/v1/status-pages/{status_page_id}/templates \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "status_page_templates",
"attributes": {
"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>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
success
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/status-pages/{status_page_id}/templates \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "status_page_templates",
"attributes": {
"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>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}