Skip to main content
GET
/
v1
/
retrospective_configurations
/
{id}
Retrieves a Retrospective Configuration
curl --request GET \
  --url https://api.rootly.com/v1/retrospective_configurations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "6c55f4a1-33ed-4f07-a296-62f970c91d89",
    "type": "retrospective_configurations",
    "attributes": {
      "kind": "skip",
      "severity_ids": [
        "be53868e-32fc-4e16-9550-821e9aa7ced5"
      ],
      "incident_type_ids": [],
      "group_ids": [],
      "created_at": "2026-01-16T12:43:26.943-08:00",
      "updated_at": "2026-01-16T12:43:26.943-08:00"
    },
    "relationships": {
      "severities": {
        "data": [
          {
            "id": "be53868e-32fc-4e16-9550-821e9aa7ced5",
            "type": "severities"
          }
        ]
      },
      "groups": {
        "data": []
      },
      "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

Query Parameters

include
enum<string>

comma separated if needed. eg: severities,groups

Available options:
severities,
groups,
incident_types

Response

retrospective_configuration found

data
object
required