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": "8fb16525-14c0-4e01-a3bf-17d641d78ac0",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 2",
      "description": "Retrospective Process 2 description",
      "is_default": false,
      "created_at": "2025-05-08T00:23:53.415-07:00",
      "updated_at": "2025-05-08T00:23:57.977-07:00",
      "retrospective_process_matching_criteria": {
        "group_ids": [
          "91c039af-b48e-490c-9048-de3c51f1cc79"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "0f82ff2f-567f-46e3-b190-6a6021b69d6a",
            "type": "retrospective_steps"
          },
          {
            "id": "d12ceb23-b6af-402a-8bb6-6203bc164d61",
            "type": "retrospective_steps"
          }
        ]
      },
      "groups": {
        "data": [
          {
            "id": "91c039af-b48e-490c-9048-de3c51f1cc79",
            "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.