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": "<string>",
"type": "post_mortem_templates",
"attributes": {
"name": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"slug": "<string>",
"default": true,
"content": "<string>",
"format": "html"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Retrospective Template found
Show child attributes
Unique ID of the post_mortem_template
post_mortem_templates Show child attributes
The name of the postmortem template
Date of creation
Date of last update
The slugified name of the postmortem template
Default selected template when editing a postmortem
The postmortem template. Liquid syntax and markdown are supported
The format of the input
html, markdown Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/post_mortem_templates/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"type": "post_mortem_templates",
"attributes": {
"name": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"slug": "<string>",
"default": true,
"content": "<string>",
"format": "html"
}
}
}