PUT
/
v1
/
retrospective_processes
/
{id}
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": "b79182ed-e3a5-4279-a49f-5d0cfcfc22c8",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 2",
      "description": "Retrospective Process 2 description",
      "is_default": false,
      "created_at": "2025-05-29T17:47:34.751-07:00",
      "updated_at": "2025-05-29T17:47:39.033-07:00",
      "retrospective_process_matching_criteria": {
        "group_ids": [
          "fca4c3f0-173d-4405-8757-db633b12ea39"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "54cb53c2-0e00-47d3-91a8-8f2c9a6558a3",
            "type": "retrospective_steps"
          },
          {
            "id": "34d19508-b3fd-45c2-92fb-87dcecbe0c08",
            "type": "retrospective_steps"
          }
        ]
      },
      "groups": {
        "data": [
          {
            "id": "fca4c3f0-173d-4405-8757-db633b12ea39",
            "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.