Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Resource UUID
Body
application/vnd.api+json
Response
Retrospective Template updated
Update a specific Retrospective Template by id
curl --request PUT \
--url https://api.rootly.com/v1/post_mortem_templates/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "post_mortem_templates",
"attributes": {
"name": "<string>",
"default": true,
"content": "<string>",
"format": "html"
}
}
}'
{
"data": {
"id": "45ea3b85-bafc-4645-9250-832ac3724409",
"type": "post_mortem_templates",
"attributes": {
"name": "My Retrospective Template Updated",
"slug": "non-voluptatem-voluptatem-in",
"format": "markdown",
"default": false,
"content": "## Test update template\n\n### Test new line",
"created_at": "2025-09-16T17:16:50.552-07:00",
"updated_at": "2025-09-16T17:16:52.643-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
Show child attributes
Retrospective Template updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/post_mortem_templates/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "post_mortem_templates",
"attributes": {
"name": "<string>",
"default": true,
"content": "<string>",
"format": "html"
}
}
}'
{
"data": {
"id": "45ea3b85-bafc-4645-9250-832ac3724409",
"type": "post_mortem_templates",
"attributes": {
"name": "My Retrospective Template Updated",
"slug": "non-voluptatem-voluptatem-in",
"format": "markdown",
"default": false,
"content": "## Test update template\n\n### Test new line",
"created_at": "2025-09-16T17:16:50.552-07:00",
"updated_at": "2025-09-16T17:16:52.643-07:00"
}
}
}