Retrieves a specific Retrospective Template by id
curl --request GET \
--url https://api.rootly.com/v1/post_mortem_templates/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8d22b441-434b-4252-9383-e24f7522ef48",
"type": "post_mortem_templates",
"attributes": {
"name": "Voluptatibus quia voluptas blanditiis.",
"slug": "voluptatibus-quia-voluptas-blanditiis",
"format": "html",
"default": false,
"content": "",
"created_at": "2025-07-23T05:31:58.929-07:00",
"updated_at": "2025-07-23T05:31:58.937-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Retrospective Template found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/post_mortem_templates/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8d22b441-434b-4252-9383-e24f7522ef48",
"type": "post_mortem_templates",
"attributes": {
"name": "Voluptatibus quia voluptas blanditiis.",
"slug": "voluptatibus-quia-voluptas-blanditiis",
"format": "html",
"default": false,
"content": "",
"created_at": "2025-07-23T05:31:58.929-07:00",
"updated_at": "2025-07-23T05:31:58.937-07:00"
}
}
}