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": "9023507c-82cb-4f98-bbbc-fd00d3a2431a",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-11-06T13:28:58.160-08:00",
"updated_at": "2025-11-06T13:29:00.554-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"2cb75771-a39a-485d-ae93-812eb7c667a1"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "31c5894c-2865-42e7-86b7-e3d1646e59c1",
"type": "retrospective_steps"
},
{
"id": "c80b9e25-9d40-4288-adea-d320331865ac",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "2cb75771-a39a-485d-ae93-812eb7c667a1",
"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": "9023507c-82cb-4f98-bbbc-fd00d3a2431a",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 2",
"description": "Retrospective Process 2 description",
"is_default": false,
"created_at": "2025-11-06T13:28:58.160-08:00",
"updated_at": "2025-11-06T13:29:00.554-08:00",
"retrospective_process_matching_criteria": {
"group_ids": [
"2cb75771-a39a-485d-ae93-812eb7c667a1"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "31c5894c-2865-42e7-86b7-e3d1646e59c1",
"type": "retrospective_steps"
},
{
"id": "c80b9e25-9d40-4288-adea-d320331865ac",
"type": "retrospective_steps"
}
]
},
"groups": {
"data": [
{
"id": "2cb75771-a39a-485d-ae93-812eb7c667a1",
"type": "groups"
}
]
}
}
}
}