GET
/
v1
/
retrospective_configurations
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/retrospective_configurations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "1d83b5b2-9b73-4abf-ad13-2ae565f007bc",
    "type": "retrospective_configurations",
    "attributes": {
      "kind": "skip",
      "severity_ids": [
        "d5d298d9-3b69-4018-96f5-d6b6284fafa7"
      ],
      "incident_type_ids": [],
      "group_ids": [],
      "created_at": "2025-05-29T17:47:20.013-07:00",
      "updated_at": "2025-05-29T17:47:20.013-07:00"
    },
    "relationships": {
      "severities": {
        "data": [
          {
            "id": "d5d298d9-3b69-4018-96f5-d6b6284fafa7",
            "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

200
application/vnd.api+json

retrospective_configuration found

The response is of type object.