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": "e7540873-e4c3-4c90-9574-67691f9ca858",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"b2cd949e-6c58-45f0-9a08-7bdb79caf144"
],
"created_at": "2025-09-12T00:40:48.794-07:00",
"updated_at": "2025-09-12T00:40:48.794-07:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "b2cd949e-6c58-45f0-9a08-7bdb79caf144",
"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": "e7540873-e4c3-4c90-9574-67691f9ca858",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"b2cd949e-6c58-45f0-9a08-7bdb79caf144"
],
"created_at": "2025-09-12T00:40:48.794-07:00",
"updated_at": "2025-09-12T00:40:48.794-07:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "b2cd949e-6c58-45f0-9a08-7bdb79caf144",
"type": "groups"
}
]
},
"incident_types": {
"data": []
}
}
}
}