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": "3ad01ff6-d546-4b2c-ad58-90bb7849696f",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-09-16T17:17:10.273-07:00",
"updated_at": "2025-09-16T17:17:12.501-07:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"9ec5b1c1-0c59-432b-93d4-3b17602c961d"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "9a58c699-f1ad-4f24-96e5-b9104f0244ed",
"type": "retrospective_steps"
},
{
"id": "04081815-100c-4402-a4fa-b3187056f417",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "9ec5b1c1-0c59-432b-93d4-3b17602c961d",
"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": "3ad01ff6-d546-4b2c-ad58-90bb7849696f",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-09-16T17:17:10.273-07:00",
"updated_at": "2025-09-16T17:17:12.501-07:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"9ec5b1c1-0c59-432b-93d4-3b17602c961d"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "9a58c699-f1ad-4f24-96e5-b9104f0244ed",
"type": "retrospective_steps"
},
{
"id": "04081815-100c-4402-a4fa-b3187056f417",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "9ec5b1c1-0c59-432b-93d4-3b17602c961d",
"type": "groups"
}
]
}
}
}
}