DELETE
/
v1
/
retrospective_processes
/
{id}
Delete a retrospective process
curl --request DELETE \
  --url https://api.rootly.com/v1/retrospective_processes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "541313ec-39ca-45a1-ba30-7fb1acb1ceb0",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Consequatur autem ex officiis.",
      "description": "Saepe aut natus. Totam voluptas voluptas. Fugiat aliquid qui.",
      "is_default": false,
      "created_at": "2025-08-01T15:00:19.290-07:00",
      "updated_at": "2025-08-01T15:00:22.565-07:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "1cfc699d-5f2c-4032-ae09-3ed8676a36fc"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "c2d532f2-6e35-424f-a3c6-758647f26911",
            "type": "retrospective_steps"
          },
          {
            "id": "eb7b1412-030e-43e2-93e3-02dd1e37af99",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "1cfc699d-5f2c-4032-ae09-3ed8676a36fc",
            "type": "incident_types"
          }
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json

retrospective_process deleted

The response is of type object.