Updates a specific retrospective process by id
curl --request PUT \
--url https://api.rootly.com/v1/retrospective_processes/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "retrospective_processes",
"attributes": {
"name": "<string>",
"description": "<string>",
"retrospective_process_matching_criteria": {
"severity_ids": [
"<string>"
]
}
}
}
}
'{
"data": {
"id": "b7ba3ba2-57cb-412e-a664-2d34bb7a0fc8",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2026-02-13T11:12:21.137-08:00",
"updated_at": "2026-02-13T11:12:22.602-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"fa029e1b-3652-444d-b5fa-77d04a13a368"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "9bd1ad09-67bc-4fce-bfce-729c89370043",
"type": "retrospective_steps"
},
{
"id": "1d9742be-199e-4e19-82d0-826fa5fb0050",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "fa029e1b-3652-444d-b5fa-77d04a13a368",
"type": "groups"
}
]
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
retrospective_process updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/retrospective_processes/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "retrospective_processes",
"attributes": {
"name": "<string>",
"description": "<string>",
"retrospective_process_matching_criteria": {
"severity_ids": [
"<string>"
]
}
}
}
}
'{
"data": {
"id": "b7ba3ba2-57cb-412e-a664-2d34bb7a0fc8",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2026-02-13T11:12:21.137-08:00",
"updated_at": "2026-02-13T11:12:22.602-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"fa029e1b-3652-444d-b5fa-77d04a13a368"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "9bd1ad09-67bc-4fce-bfce-729c89370043",
"type": "retrospective_steps"
},
{
"id": "1d9742be-199e-4e19-82d0-826fa5fb0050",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "fa029e1b-3652-444d-b5fa-77d04a13a368",
"type": "groups"
}
]
}
}
}
}