PUT
/
v1
/
retrospective_configurations
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/retrospective_configurations/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "retrospective_configurations",
    "attributes": {
      "severity_ids": [
        "<string>"
      ],
      "group_ids": [
        "<string>"
      ],
      "incident_type_ids": [
        "<string>"
      ]
    }
  }
}'
{
  "data": {
    "id": "584996ba-1448-434c-af62-05c96cf12911",
    "type": "retrospective_configurations",
    "attributes": {
      "kind": "skip",
      "severity_ids": [],
      "incident_type_ids": [],
      "group_ids": [
        "4a61e5b0-3851-4826-b1a1-cd0b78da97e1"
      ],
      "created_at": "2025-06-20T11:35:27.502-07:00",
      "updated_at": "2025-06-20T11:35:27.502-07:00"
    },
    "relationships": {
      "severities": {
        "data": []
      },
      "groups": {
        "data": [
          {
            "id": "4a61e5b0-3851-4826-b1a1-cd0b78da97e1",
            "type": "groups"
          }
        ]
      },
      "incident_types": {
        "data": []
      }
    }
  }
}

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 configuration updated

The response is of type object.