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": "d94b657a-fedf-40c0-b51c-73a2fdf4f3fd",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"82014d70-0d26-49ee-8891-31e9635c2f3c"
],
"incident_type_ids": [],
"group_ids": [],
"created_at": "2025-07-29T05:41:04.050-07:00",
"updated_at": "2025-07-29T05:41:04.050-07:00"
},
"relationships": {
"severities": {
"data": [
{
"id": "82014d70-0d26-49ee-8891-31e9635c2f3c",
"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": "d94b657a-fedf-40c0-b51c-73a2fdf4f3fd",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"82014d70-0d26-49ee-8891-31e9635c2f3c"
],
"incident_type_ids": [],
"group_ids": [],
"created_at": "2025-07-29T05:41:04.050-07:00",
"updated_at": "2025-07-29T05:41:04.050-07:00"
},
"relationships": {
"severities": {
"data": [
{
"id": "82014d70-0d26-49ee-8891-31e9635c2f3c",
"type": "severities"
}
]
},
"groups": {
"data": []
},
"incident_types": {
"data": []
}
}
}
}