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": "9b4eb9c1-9538-470f-b9ca-2ae2d36ebac9",
"type": "post_mortem_templates",
"attributes": {
"name": "Consequatur fugiat explicabo et.",
"slug": "consequatur-fugiat-explicabo-et",
"format": "html",
"default": false,
"content": "",
"created_at": "2025-08-12T10:50:23.892-07:00",
"updated_at": "2025-08-12T10:50:23.898-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": "9b4eb9c1-9538-470f-b9ca-2ae2d36ebac9",
"type": "post_mortem_templates",
"attributes": {
"name": "Consequatur fugiat explicabo et.",
"slug": "consequatur-fugiat-explicabo-et",
"format": "html",
"default": false,
"content": "",
"created_at": "2025-08-12T10:50:23.892-07:00",
"updated_at": "2025-08-12T10:50:23.898-07:00"
}
}
}