Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
retrospective_process updated
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": "fc0c9f65-95d3-42c8-af79-d5dbafde0440",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-11-18T19:06:57.150-08:00",
"updated_at": "2025-11-18T19:07:00.029-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"01162a80-43a8-4eca-9200-ed19ebdcf997"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "c21214f4-0541-4eb0-a85a-e356ce24e99b",
"type": "retrospective_steps"
},
{
"id": "ddd8ebac-960c-4b31-9547-e00dea8b29ec",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "01162a80-43a8-4eca-9200-ed19ebdcf997",
"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": "fc0c9f65-95d3-42c8-af79-d5dbafde0440",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-11-18T19:06:57.150-08:00",
"updated_at": "2025-11-18T19:07:00.029-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"01162a80-43a8-4eca-9200-ed19ebdcf997"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "c21214f4-0541-4eb0-a85a-e356ce24e99b",
"type": "retrospective_steps"
},
{
"id": "ddd8ebac-960c-4b31-9547-e00dea8b29ec",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "01162a80-43a8-4eca-9200-ed19ebdcf997",
"type": "groups"
}
]
}
}
}
}