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": "b493ded0-02c3-4975-b70a-dadcf1afcf12",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2026-02-03T10:33:47.437-08:00",
"updated_at": "2026-02-03T10:33:49.939-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"ce9152fa-13fb-4f2c-85bf-3b1ac90afd82"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "410398b8-e02d-4621-bbdd-ae0f0107bb76",
"type": "retrospective_steps"
},
{
"id": "01d1d043-1925-4522-b382-d83cb32a018e",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "ce9152fa-13fb-4f2c-85bf-3b1ac90afd82",
"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": "b493ded0-02c3-4975-b70a-dadcf1afcf12",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2026-02-03T10:33:47.437-08:00",
"updated_at": "2026-02-03T10:33:49.939-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"ce9152fa-13fb-4f2c-85bf-3b1ac90afd82"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "410398b8-e02d-4621-bbdd-ae0f0107bb76",
"type": "retrospective_steps"
},
{
"id": "01d1d043-1925-4522-b382-d83cb32a018e",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "ce9152fa-13fb-4f2c-85bf-3b1ac90afd82",
"type": "groups"
}
]
}
}
}
}