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": "efc33d99-80dd-4046-87fc-a392ffb630c0",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-12-10T21:57:58.077-08:00",
"updated_at": "2025-12-10T21:58:01.071-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"403404b7-976a-4122-88fa-63ef59e384d3"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "30bc0962-1ddc-462f-8df3-fcc41de397f4",
"type": "retrospective_steps"
},
{
"id": "dec039ea-1439-41d7-a9e3-22a6c36753ac",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "403404b7-976a-4122-88fa-63ef59e384d3",
"type": "groups"
}
]
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
retrospective_processes Show child attributes
The name of the retrospective process
The description of the retrospective process
retrospective_process updated
Show child attributes
Unique id of retrospective process
retrospective_processes Show child attributes
The name of the retrospective process
The description of the retrospective process
Indicates the default process that Rootly created. This will be used as a fallback if no processes match the incident's conditions. The default process cannot have conditions and cannot be changed.
Date of creation
Date of last update
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": "efc33d99-80dd-4046-87fc-a392ffb630c0",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-12-10T21:57:58.077-08:00",
"updated_at": "2025-12-10T21:58:01.071-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"403404b7-976a-4122-88fa-63ef59e384d3"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "30bc0962-1ddc-462f-8df3-fcc41de397f4",
"type": "retrospective_steps"
},
{
"id": "dec039ea-1439-41d7-a9e3-22a6c36753ac",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "403404b7-976a-4122-88fa-63ef59e384d3",
"type": "groups"
}
]
}
}
}
}