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": "790cc790-8e67-4352-bb15-3c8816bf541b",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"c8281963-c2cb-49e3-a2db-90b6fea57913"
],
"incident_type_ids": [],
"group_ids": [],
"created_at": "2025-12-04T16:13:59.998-08:00",
"updated_at": "2025-12-04T16:13:59.998-08:00"
},
"relationships": {
"severities": {
"data": [
{
"id": "c8281963-c2cb-49e3-a2db-90b6fea57913",
"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
Unique ID of the retrospective configuration
retrospective_configurations Show child attributes
The kind of the configuration.
skip, mandatory The Severity ID's to attach to the retrospective configuration
The Team ID's to attach to the retrospective configuration
The Incident Type ID's to attach to the retrospective configuration
Date of creation
Date of last update
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/retrospective_configurations/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "790cc790-8e67-4352-bb15-3c8816bf541b",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"c8281963-c2cb-49e3-a2db-90b6fea57913"
],
"incident_type_ids": [],
"group_ids": [],
"created_at": "2025-12-04T16:13:59.998-08:00",
"updated_at": "2025-12-04T16:13:59.998-08:00"
},
"relationships": {
"severities": {
"data": [
{
"id": "c8281963-c2cb-49e3-a2db-90b6fea57913",
"type": "severities"
}
]
},
"groups": {
"data": []
},
"incident_types": {
"data": []
}
}
}
}