PUT
/
v1
/
retrospective_processes
/
{id}
Update a retrospective process
curl --request PUT \
  --url https://api.rootly.com/v1/retrospective_processes/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "retrospective_processes",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "retrospective_process_matching_criteria": {
        "severity_ids": [
          "<string>"
        ]
      }
    }
  }
}'
{
  "data": {
    "id": "71faa026-9c78-420c-8e87-b1557b521dba",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 2",
      "description": "Retrospective Process 2 description",
      "is_default": false,
      "created_at": "2025-07-21T23:21:58.953-07:00",
      "updated_at": "2025-07-21T23:22:02.458-07:00",
      "retrospective_process_matching_criteria": {
        "group_ids": [
          "dbe75df4-c366-4c3b-a4ef-959363054378"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "e1ed92d2-338a-4e90-b992-481ca08864f8",
            "type": "retrospective_steps"
          },
          {
            "id": "1e632da1-2572-44a2-aac7-9f25d98a105c",
            "type": "retrospective_steps"
          }
        ]
      },
      "groups": {
        "data": [
          {
            "id": "dbe75df4-c366-4c3b-a4ef-959363054378",
            "type": "groups"
          }
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/vnd.api+json

Response

200
application/vnd.api+json

retrospective_process updated

The response is of type object.