Skip to main content
PUT
/
v1
/
retrospective_configurations
/
{id}
Update a retrospective configuration
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": "fe481c88-efac-4a9d-bbc5-e0e50714408a",
    "type": "retrospective_configurations",
    "attributes": {
      "kind": "skip",
      "severity_ids": [],
      "incident_type_ids": [],
      "group_ids": [
        "90b8d8a2-93e1-4887-a8c4-c8de4f7de103"
      ],
      "created_at": "2026-01-23T22:59:48.119-08:00",
      "updated_at": "2026-01-23T22:59:48.119-08:00"
    },
    "relationships": {
      "severities": {
        "data": []
      },
      "groups": {
        "data": [
          {
            "id": "90b8d8a2-93e1-4887-a8c4-c8de4f7de103",
            "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

retrospective configuration updated

data
object
required