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": "9bde6933-4393-4fab-b5e9-0255c350db7e",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 2",
      "description": "Retrospective Process 2 description",
      "is_default": false,
      "created_at": "2025-03-22T23:04:19.116-07:00",
      "updated_at": "2025-03-22T23:04:22.634-07:00",
      "retrospective_process_matching_criteria": {
        "group_ids": [
          "3a033933-e43c-4cf3-bb0b-b400c8b5868d"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "f710f04d-3d56-4661-995a-effd1794da38",
            "type": "retrospective_steps"
          },
          {
            "id": "e63dd47e-f4a4-4c57-b71b-ed4623cc7dec",
            "type": "retrospective_steps"
          }
        ]
      },
      "groups": {
        "data": [
          {
            "id": "3a033933-e43c-4cf3-bb0b-b400c8b5868d",
            "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