Update a specific retrospective configuration by id
curl --request PUT \
--url https://api.rootly.com/v1/retrospective_configurations/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "retrospective_configurations",
"attributes": {
"severity_ids": [
"<string>"
],
"group_ids": [
"<string>"
],
"incident_type_ids": [
"<string>"
]
}
}
}
'{
"data": {
"id": "7ede139b-34cb-40e8-9245-543148fc04f8",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"49d14482-1b5e-4976-b2d0-5b0b9cd0f7ca"
],
"created_at": "2026-01-03T21:29:13.096-08:00",
"updated_at": "2026-01-03T21:29:13.096-08:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "49d14482-1b5e-4976-b2d0-5b0b9cd0f7ca",
"type": "groups"
}
]
},
"incident_types": {
"data": []
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
retrospective configuration updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/retrospective_configurations/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "retrospective_configurations",
"attributes": {
"severity_ids": [
"<string>"
],
"group_ids": [
"<string>"
],
"incident_type_ids": [
"<string>"
]
}
}
}
'{
"data": {
"id": "7ede139b-34cb-40e8-9245-543148fc04f8",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"49d14482-1b5e-4976-b2d0-5b0b9cd0f7ca"
],
"created_at": "2026-01-03T21:29:13.096-08:00",
"updated_at": "2026-01-03T21:29:13.096-08:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "49d14482-1b5e-4976-b2d0-5b0b9cd0f7ca",
"type": "groups"
}
]
},
"incident_types": {
"data": []
}
}
}
}