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": "85a0e9c3-13a9-4806-98c8-58921935c247",
    "type": "retrospective_configurations",
    "attributes": {
      "kind": "skip",
      "severity_ids": [],
      "incident_type_ids": [],
      "group_ids": [
        "b0187f94-b236-4e38-a83f-29510f248068"
      ],
      "created_at": "2025-05-08T00:23:41.034-07:00",
      "updated_at": "2025-05-08T00:23:41.034-07:00"
    },
    "relationships": {
      "severities": {
        "data": []
      },
      "groups": {
        "data": [
          {
            "id": "b0187f94-b236-4e38-a83f-29510f248068",
            "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.