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": "522cf6f2-d17a-492c-92b2-e7b6d209bbbc",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-12-03T03:10:45.782-08:00",
"updated_at": "2025-12-03T03:10:47.603-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"7fed8f4f-5d38-4acd-b2a2-1caf2b7541e6"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "a2016d4d-2d41-4dd2-b305-9bddfa6fd1a6",
"type": "retrospective_steps"
},
{
"id": "0ec41989-5e09-4a48-9d79-8e14c3d64813",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "7fed8f4f-5d38-4acd-b2a2-1caf2b7541e6",
"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": "522cf6f2-d17a-492c-92b2-e7b6d209bbbc",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-12-03T03:10:45.782-08:00",
"updated_at": "2025-12-03T03:10:47.603-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"7fed8f4f-5d38-4acd-b2a2-1caf2b7541e6"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "a2016d4d-2d41-4dd2-b305-9bddfa6fd1a6",
"type": "retrospective_steps"
},
{
"id": "0ec41989-5e09-4a48-9d79-8e14c3d64813",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "7fed8f4f-5d38-4acd-b2a2-1caf2b7541e6",
"type": "groups"
}
]
}
}
}
}