Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
retrospective configuration updated
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": "3a3c53b5-87e7-4ebc-b6af-26a6a8a3c8a2",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"769f0ec7-263d-48c8-a4c0-b2bdd2a791b0"
],
"created_at": "2025-10-02T07:37:07.183-07:00",
"updated_at": "2025-10-02T07:37:07.183-07:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "769f0ec7-263d-48c8-a4c0-b2bdd2a791b0",
"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": "3a3c53b5-87e7-4ebc-b6af-26a6a8a3c8a2",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [],
"incident_type_ids": [],
"group_ids": [
"769f0ec7-263d-48c8-a4c0-b2bdd2a791b0"
],
"created_at": "2025-10-02T07:37:07.183-07:00",
"updated_at": "2025-10-02T07:37:07.183-07:00"
},
"relationships": {
"severities": {
"data": []
},
"groups": {
"data": [
{
"id": "769f0ec7-263d-48c8-a4c0-b2bdd2a791b0",
"type": "groups"
}
]
},
"incident_types": {
"data": []
}
}
}
}