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": "4c07ebb1-1ed1-46c5-883b-b396ca411fbe",
"type": "retrospective_processes",
"attributes": {
"name": "Voluptate omnis ullam nulla.",
"description": "Cum aut vel. Consequatur asperiores magni. Delectus quod facere.",
"is_default": false,
"created_at": "2025-08-21T23:35:24.433-07:00",
"updated_at": "2025-08-21T23:35:26.763-07:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"25c63f7c-2aaa-4875-bdb5-fae87b4ab93f"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "4a59af8a-9bd7-4393-bfe9-f802a82c36cf",
"type": "retrospective_steps"
},
{
"id": "a530eae5-c6d4-487f-8650-9d8eb925df84",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "25c63f7c-2aaa-4875-bdb5-fae87b4ab93f",
"type": "incident_types"
}
]
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
retrospective_process deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/retrospective_processes/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "4c07ebb1-1ed1-46c5-883b-b396ca411fbe",
"type": "retrospective_processes",
"attributes": {
"name": "Voluptate omnis ullam nulla.",
"description": "Cum aut vel. Consequatur asperiores magni. Delectus quod facere.",
"is_default": false,
"created_at": "2025-08-21T23:35:24.433-07:00",
"updated_at": "2025-08-21T23:35:26.763-07:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"25c63f7c-2aaa-4875-bdb5-fae87b4ab93f"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "4a59af8a-9bd7-4393-bfe9-f802a82c36cf",
"type": "retrospective_steps"
},
{
"id": "a530eae5-c6d4-487f-8650-9d8eb925df84",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "25c63f7c-2aaa-4875-bdb5-fae87b4ab93f",
"type": "incident_types"
}
]
}
}
}
}