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": "78b07719-b2f1-4442-94dd-49145e9e21d9",
    "type": "retrospective_configurations",
    "attributes": {
      "kind": "skip",
      "severity_ids": [],
      "incident_type_ids": [],
      "group_ids": [
        "92d8220c-b5c3-4a7e-9f88-6665e33f8533"
      ],
      "created_at": "2025-05-29T17:47:22.737-07:00",
      "updated_at": "2025-05-29T17:47:22.737-07:00"
    },
    "relationships": {
      "severities": {
        "data": []
      },
      "groups": {
        "data": [
          {
            "id": "92d8220c-b5c3-4a7e-9f88-6665e33f8533",
            "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.