GET
/
v1
/
retrospective_configurations
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/retrospective_configurations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "0479e1ae-13af-4c69-a7f3-c09b4026df6a",
    "type": "retrospective_configurations",
    "attributes": {
      "kind": "skip",
      "severity_ids": [
        "9e5a1e5c-d814-4c0f-8c81-ea8f6257701b"
      ],
      "incident_type_ids": [],
      "group_ids": [],
      "created_at": "2025-04-18T18:22:10.524-07:00",
      "updated_at": "2025-04-18T18:22:10.524-07:00"
    },
    "relationships": {
      "severities": {
        "data": [
          {
            "id": "9e5a1e5c-d814-4c0f-8c81-ea8f6257701b",
            "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
data
object
required