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": "49c50c04-d6e2-43f2-9935-b8e39feb4b68",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-11-14T13:17:28.531-08:00",
"updated_at": "2025-11-14T13:17:30.456-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"64a3280f-b860-4bdf-81a7-a999bfd3ee98"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "d61329d4-7afe-47e3-8687-ba87ec6eddaa",
"type": "retrospective_steps"
},
{
"id": "39c7a261-9816-418d-aae4-1fa61a52d49b",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "64a3280f-b860-4bdf-81a7-a999bfd3ee98",
"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": "49c50c04-d6e2-43f2-9935-b8e39feb4b68",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-11-14T13:17:28.531-08:00",
"updated_at": "2025-11-14T13:17:30.456-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"64a3280f-b860-4bdf-81a7-a999bfd3ee98"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "d61329d4-7afe-47e3-8687-ba87ec6eddaa",
"type": "retrospective_steps"
},
{
"id": "39c7a261-9816-418d-aae4-1fa61a52d49b",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "64a3280f-b860-4bdf-81a7-a999bfd3ee98",
"type": "groups"
}
]
}
}
}
}