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": "c45457ca-27c7-43b8-a4d5-d9eb405ccbed",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"458b0a08-a5b7-4101-bb63-915c61424839"
],
"incident_type_ids": [],
"group_ids": [],
"created_at": "2025-12-24T09:27:42.603-08:00",
"updated_at": "2025-12-24T09:27:42.603-08:00"
},
"relationships": {
"severities": {
"data": [
{
"id": "458b0a08-a5b7-4101-bb63-915c61424839",
"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": "c45457ca-27c7-43b8-a4d5-d9eb405ccbed",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"458b0a08-a5b7-4101-bb63-915c61424839"
],
"incident_type_ids": [],
"group_ids": [],
"created_at": "2025-12-24T09:27:42.603-08:00",
"updated_at": "2025-12-24T09:27:42.603-08:00"
},
"relationships": {
"severities": {
"data": [
{
"id": "458b0a08-a5b7-4101-bb63-915c61424839",
"type": "severities"
}
]
},
"groups": {
"data": []
},
"incident_types": {
"data": []
}
}
}
}