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": "0ea38d21-c2c8-4240-885c-ac1caac32868",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-11-27T00:11:59.873-08:00",
"updated_at": "2025-11-27T00:12:01.841-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"b183ba99-833f-4e6f-b2a9-81e976c4b2be"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "9ab3186b-6e6b-4bb4-a455-04f66b356388",
"type": "retrospective_steps"
},
{
"id": "4cab082c-001c-4300-af28-a445391f384c",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "b183ba99-833f-4e6f-b2a9-81e976c4b2be",
"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": "0ea38d21-c2c8-4240-885c-ac1caac32868",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-11-27T00:11:59.873-08:00",
"updated_at": "2025-11-27T00:12:01.841-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"b183ba99-833f-4e6f-b2a9-81e976c4b2be"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "9ab3186b-6e6b-4bb4-a455-04f66b356388",
"type": "retrospective_steps"
},
{
"id": "4cab082c-001c-4300-af28-a445391f384c",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "b183ba99-833f-4e6f-b2a9-81e976c4b2be",
"type": "groups"
}
]
}
}
}
}