PUT
/
v1
/
post_mortem_templates
/
{id}
Update a Retrospective Template
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"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
required

Resource UUID

Body

application/vnd.api+json
data
object
required

Response

Retrospective Template updated

data
object
required