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": "2720dfe4-bb1b-4976-895f-54ba241911d5",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 2",
      "description": "Retrospective Process 2 description",
      "is_default": false,
      "created_at": "2025-06-19T02:43:15.022-07:00",
      "updated_at": "2025-06-19T02:43:17.901-07:00",
      "retrospective_process_matching_criteria": {
        "group_ids": [
          "d6481736-0b07-4aae-80c5-bab98349be0f"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "6070d472-1d72-4569-965b-5f03dea5f27c",
            "type": "retrospective_steps"
          },
          {
            "id": "5d6b69df-08d9-4165-89f3-61998599d197",
            "type": "retrospective_steps"
          }
        ]
      },
      "groups": {
        "data": [
          {
            "id": "d6481736-0b07-4aae-80c5-bab98349be0f",
            "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.