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": "7675a3be-06ea-4f01-9e58-27a33107b625",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 2",
      "description": "Retrospective Process 2 description",
      "is_default": false,
      "created_at": "2025-04-18T18:22:25.733-07:00",
      "updated_at": "2025-04-18T18:22:29.518-07:00",
      "retrospective_process_matching_criteria": {
        "group_ids": [
          "da88e54c-e3c4-41a8-aaf6-4d9bcbcdd0b8"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "e12e1dd7-5f29-432c-936a-bd14097da521",
            "type": "retrospective_steps"
          },
          {
            "id": "7178d0d2-1c1f-4677-a14a-f4bee2ebedb8",
            "type": "retrospective_steps"
          }
        ]
      },
      "groups": {
        "data": [
          {
            "id": "da88e54c-e3c4-41a8-aaf6-4d9bcbcdd0b8",
            "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

200
application/vnd.api+json
retrospective_process updated
data
object
required