Delete a specific retrospective process by id
curl --request DELETE \
--url https://api.rootly.com/v1/retrospective_processes/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"type": "retrospective_processes",
"attributes": {
"name": "<string>",
"description": "<string>",
"is_default": true,
"created_at": "<string>",
"updated_at": "<string>",
"retrospective_process_matching_criteria": {
"severity_ids": [
"<string>"
]
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
retrospective_process deleted
Show child attributes
Unique id of retrospective process
retrospective_processes Show child attributes
The name of the retrospective process
The description of the retrospective process
Indicates the default process that Rootly created. This will be used as a fallback if no processes match the incident's conditions. The default process cannot have conditions and cannot be changed.
Date of creation
Date of last update
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/retrospective_processes/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"type": "retrospective_processes",
"attributes": {
"name": "<string>",
"description": "<string>",
"is_default": true,
"created_at": "<string>",
"updated_at": "<string>",
"retrospective_process_matching_criteria": {
"severity_ids": [
"<string>"
]
}
}
}
}