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": "3ad01ff6-d546-4b2c-ad58-90bb7849696f",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 2",
      "description": "Retrospective Process 2 description",
      "is_default": false,
      "created_at": "2025-09-16T17:17:10.273-07:00",
      "updated_at": "2025-09-16T17:17:12.501-07:00",
      "retrospective_process_matching_criteria": {
        "group_ids": [
          "9ec5b1c1-0c59-432b-93d4-3b17602c961d"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "9a58c699-f1ad-4f24-96e5-b9104f0244ed",
            "type": "retrospective_steps"
          },
          {
            "id": "04081815-100c-4402-a4fa-b3187056f417",
            "type": "retrospective_steps"
          }
        ]
      },
      "groups": {
        "data": [
          {
            "id": "9ec5b1c1-0c59-432b-93d4-3b17602c961d",
            "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
data
object
required

Response

retrospective_process updated

data
object
required