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": "23f821b7-5e2a-4e06-a62e-c8d7aa406dca",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-08-11T20:45:55.110-07:00",
"updated_at": "2025-08-11T20:45:57.093-07:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"e1674ace-43f1-417e-963e-b69e3103b9e3"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "aae779d1-f741-4a86-a1cb-a95410a59167",
"type": "retrospective_steps"
},
{
"id": "6bff1ef7-2ef3-4511-8cfc-c389255db077",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "e1674ace-43f1-417e-963e-b69e3103b9e3",
"type": "groups"
}
]
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
retrospective_process updated
The response is of type object
.
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": "23f821b7-5e2a-4e06-a62e-c8d7aa406dca",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-08-11T20:45:55.110-07:00",
"updated_at": "2025-08-11T20:45:57.093-07:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"e1674ace-43f1-417e-963e-b69e3103b9e3"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "aae779d1-f741-4a86-a1cb-a95410a59167",
"type": "retrospective_steps"
},
{
"id": "6bff1ef7-2ef3-4511-8cfc-c389255db077",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "e1674ace-43f1-417e-963e-b69e3103b9e3",
"type": "groups"
}
]
}
}
}
}