Retrieves a specific retrospective_configuration by id
curl --request GET \
--url https://api.rootly.com/v1/retrospective_configurations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "4c685889-f341-4dcd-b57b-8b2ded0c5932",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"ee1f5074-45b9-45d7-ae0c-61e1f3bddf66"
],
"incident_type_ids": [],
"group_ids": [],
"created_at": "2025-09-07T18:23:42.769-07:00",
"updated_at": "2025-09-07T18:23:42.769-07:00"
},
"relationships": {
"severities": {
"data": [
{
"id": "ee1f5074-45b9-45d7-ae0c-61e1f3bddf66",
"type": "severities"
}
]
},
"groups": {
"data": []
},
"incident_types": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
comma separated if needed. eg: severities,groups
severities
, groups
, incident_types
retrospective_configuration found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/retrospective_configurations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "4c685889-f341-4dcd-b57b-8b2ded0c5932",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"ee1f5074-45b9-45d7-ae0c-61e1f3bddf66"
],
"incident_type_ids": [],
"group_ids": [],
"created_at": "2025-09-07T18:23:42.769-07:00",
"updated_at": "2025-09-07T18:23:42.769-07:00"
},
"relationships": {
"severities": {
"data": [
{
"id": "ee1f5074-45b9-45d7-ae0c-61e1f3bddf66",
"type": "severities"
}
]
},
"groups": {
"data": []
},
"incident_types": {
"data": []
}
}
}
}