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": "23f821b7-5e2a-4e06-a62e-c8d7aa406dca",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 2",
      "description": "Retrospective Process 2 description",
      "is_default": false,
      "created_at": "2025-08-11T20:45:55.110-07:00",
      "updated_at": "2025-08-11T20:45:57.093-07:00",
      "retrospective_process_matching_criteria": {
        "group_ids": [
          "e1674ace-43f1-417e-963e-b69e3103b9e3"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "aae779d1-f741-4a86-a1cb-a95410a59167",
            "type": "retrospective_steps"
          },
          {
            "id": "6bff1ef7-2ef3-4511-8cfc-c389255db077",
            "type": "retrospective_steps"
          }
        ]
      },
      "groups": {
        "data": [
          {
            "id": "e1674ace-43f1-417e-963e-b69e3103b9e3",
            "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.