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": "1b27cb24-6282-4fb8-a388-67557cf812f3",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"b1953c6e-e3b8-4fc9-9d49-7bb7f3827867"
],
"incident_type_ids": [],
"group_ids": [],
"created_at": "2026-02-19T19:13:22.593-08:00",
"updated_at": "2026-02-19T19:13:22.593-08:00"
},
"relationships": {
"severities": {
"data": [
{
"id": "b1953c6e-e3b8-4fc9-9d49-7bb7f3827867",
"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
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/retrospective_configurations/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "1b27cb24-6282-4fb8-a388-67557cf812f3",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"b1953c6e-e3b8-4fc9-9d49-7bb7f3827867"
],
"incident_type_ids": [],
"group_ids": [],
"created_at": "2026-02-19T19:13:22.593-08:00",
"updated_at": "2026-02-19T19:13:22.593-08:00"
},
"relationships": {
"severities": {
"data": [
{
"id": "b1953c6e-e3b8-4fc9-9d49-7bb7f3827867",
"type": "severities"
}
]
},
"groups": {
"data": []
},
"incident_types": {
"data": []
}
}
}
}