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": "6b789e16-1f5b-4ec4-b676-9c537a9b635f",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"a10b7111-d217-4170-84ab-c6e30036058b"
],
"created_at": "2025-08-21T23:46:52.002-07:00",
"updated_at": "2025-08-21T23:46:52.002-07:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "a10b7111-d217-4170-84ab-c6e30036058b",
"type": "groups"
}
]
},
"incident_types": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
retrospective configuration updated
The response is of type object
.
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": "6b789e16-1f5b-4ec4-b676-9c537a9b635f",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"a10b7111-d217-4170-84ab-c6e30036058b"
],
"created_at": "2025-08-21T23:46:52.002-07:00",
"updated_at": "2025-08-21T23:46:52.002-07:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "a10b7111-d217-4170-84ab-c6e30036058b",
"type": "groups"
}
]
},
"incident_types": {
"data": []
}
}
}
}