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": "b0f82981-2413-436a-b792-456627aa8f83",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2026-01-21T11:22:12.993-08:00",
"updated_at": "2026-01-21T11:22:14.962-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"31ded527-65b1-4ce4-a077-f8476843b949"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "419cf5c3-90ae-47c7-9ced-5cde335a38c3",
"type": "retrospective_steps"
},
{
"id": "63d1cd23-1fc5-4054-9a47-a01fb9c0a263",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "31ded527-65b1-4ce4-a077-f8476843b949",
"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": "b0f82981-2413-436a-b792-456627aa8f83",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2026-01-21T11:22:12.993-08:00",
"updated_at": "2026-01-21T11:22:14.962-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"31ded527-65b1-4ce4-a077-f8476843b949"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "419cf5c3-90ae-47c7-9ced-5cde335a38c3",
"type": "retrospective_steps"
},
{
"id": "63d1cd23-1fc5-4054-9a47-a01fb9c0a263",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "31ded527-65b1-4ce4-a077-f8476843b949",
"type": "groups"
}
]
}
}
}
}