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": "caf12ca4-ff46-454b-b7ae-d6665bc1005c",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"e1bf74bf-8922-49ff-aa63-7ec8234ce5cb"
],
"created_at": "2025-08-01T21:51:02.944-07:00",
"updated_at": "2025-08-01T21:51:02.944-07:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "e1bf74bf-8922-49ff-aa63-7ec8234ce5cb",
"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": "caf12ca4-ff46-454b-b7ae-d6665bc1005c",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"e1bf74bf-8922-49ff-aa63-7ec8234ce5cb"
],
"created_at": "2025-08-01T21:51:02.944-07:00",
"updated_at": "2025-08-01T21:51:02.944-07:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "e1bf74bf-8922-49ff-aa63-7ec8234ce5cb",
"type": "groups"
}
]
},
"incident_types": {
"data": []
}
}
}
}