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": "b976400e-806c-46e0-92bb-7b445bc527a4",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2026-01-20T09:47:50.940-08:00",
"updated_at": "2026-01-20T09:47:52.445-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"5e80d080-aecf-427a-b510-2dec2023973d"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "9ada18b7-2938-4a95-8aaa-bef3a438ea76",
"type": "retrospective_steps"
},
{
"id": "b333cf40-7a42-4755-bf84-9c05d6d32f91",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "5e80d080-aecf-427a-b510-2dec2023973d",
"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": "b976400e-806c-46e0-92bb-7b445bc527a4",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2026-01-20T09:47:50.940-08:00",
"updated_at": "2026-01-20T09:47:52.445-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"5e80d080-aecf-427a-b510-2dec2023973d"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "9ada18b7-2938-4a95-8aaa-bef3a438ea76",
"type": "retrospective_steps"
},
{
"id": "b333cf40-7a42-4755-bf84-9c05d6d32f91",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "5e80d080-aecf-427a-b510-2dec2023973d",
"type": "groups"
}
]
}
}
}
}