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": "89516ab2-20df-4f93-8551-9b2233400186",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 2",
      "description": "Retrospective Process 2 description",
      "is_default": false,
      "created_at": "2025-07-01T20:57:04.465-07:00",
      "updated_at": "2025-07-01T20:57:07.356-07:00",
      "retrospective_process_matching_criteria": {
        "group_ids": [
          "3522da85-bba8-4a16-b886-2c2f8a4b96a5"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "e8d06624-71df-4a8e-b30e-296b10832036",
            "type": "retrospective_steps"
          },
          {
            "id": "b22bb4a5-f715-46b0-a033-b89929891cc4",
            "type": "retrospective_steps"
          }
        ]
      },
      "groups": {
        "data": [
          {
            "id": "3522da85-bba8-4a16-b886-2c2f8a4b96a5",
            "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.