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": "b81d2b02-d117-4088-8d34-e320a8d7f281",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"364c93f6-b871-4165-a58b-c9f8863bd182"
],
"created_at": "2025-12-05T15:09:24.395-08:00",
"updated_at": "2025-12-05T15:09:24.395-08:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "364c93f6-b871-4165-a58b-c9f8863bd182",
"type": "groups"
}
]
},
"incident_types": {
"data": []
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
retrospective_configurations Show child attributes
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
retrospective configuration updated
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 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": "b81d2b02-d117-4088-8d34-e320a8d7f281",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"364c93f6-b871-4165-a58b-c9f8863bd182"
],
"created_at": "2025-12-05T15:09:24.395-08:00",
"updated_at": "2025-12-05T15:09:24.395-08:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "364c93f6-b871-4165-a58b-c9f8863bd182",
"type": "groups"
}
]
},
"incident_types": {
"data": []
}
}
}
}