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": "43c1989f-69da-4228-892a-56f5dcdca426",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2026-01-30T06:41:39.687-08:00",
"updated_at": "2026-01-30T06:41:41.358-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"86082e02-7717-4ca8-8e28-febe06686a43"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "c21c3aee-fae5-4c46-a2f4-7ca0ea1265fe",
"type": "retrospective_steps"
},
{
"id": "eecd5d67-bda9-4471-8506-6e78cf4f2eab",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "86082e02-7717-4ca8-8e28-febe06686a43",
"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": "43c1989f-69da-4228-892a-56f5dcdca426",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2026-01-30T06:41:39.687-08:00",
"updated_at": "2026-01-30T06:41:41.358-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"86082e02-7717-4ca8-8e28-febe06686a43"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "c21c3aee-fae5-4c46-a2f4-7ca0ea1265fe",
"type": "retrospective_steps"
},
{
"id": "eecd5d67-bda9-4471-8506-6e78cf4f2eab",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "86082e02-7717-4ca8-8e28-febe06686a43",
"type": "groups"
}
]
}
}
}
}