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": "05f65049-55b4-4bca-925c-5bed5b3f2e60",
    "type": "retrospective_configurations",
    "attributes": {
      "kind": "skip",
      "severity_ids": [],
      "incident_type_ids": [],
      "group_ids": [
        "6cf82c54-7cd0-47f8-b7da-b0073cb60f7c"
      ],
      "created_at": "2025-03-28T23:04:11.260-07:00",
      "updated_at": "2025-03-28T23:04:11.260-07:00"
    },
    "relationships": {
      "severities": {
        "data": []
      },
      "groups": {
        "data": [
          {
            "id": "6cf82c54-7cd0-47f8-b7da-b0073cb60f7c",
            "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
data
object
required

Response

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