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": "bf3e2922-f11a-417b-ae1e-8ffab6923774",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-10-07T14:15:34.137-07:00",
"updated_at": "2025-10-07T14:15:36.312-07:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"27434853-2d83-4445-8c7d-da8315703a40"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "307c1a89-963b-42a2-8e13-38a2f1ea7260",
"type": "retrospective_steps"
},
{
"id": "347523bd-6c72-4e9e-be0d-48161a0850c9",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "27434853-2d83-4445-8c7d-da8315703a40",
"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": "bf3e2922-f11a-417b-ae1e-8ffab6923774",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-10-07T14:15:34.137-07:00",
"updated_at": "2025-10-07T14:15:36.312-07:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"27434853-2d83-4445-8c7d-da8315703a40"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "307c1a89-963b-42a2-8e13-38a2f1ea7260",
"type": "retrospective_steps"
},
{
"id": "347523bd-6c72-4e9e-be0d-48161a0850c9",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "27434853-2d83-4445-8c7d-da8315703a40",
"type": "groups"
}
]
}
}
}
}