DELETE
/
v1
/
retrospective_processes
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/retrospective_processes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "b79182ed-e3a5-4279-a49f-5d0cfcfc22c8",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Porro cupiditate vero laborum.",
      "description": "Voluptas deserunt sit. Tenetur iste vitae. Sed voluptatibus fuga.",
      "is_default": false,
      "created_at": "2025-05-29T17:47:34.751-07:00",
      "updated_at": "2025-05-29T17:47:39.616-07:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "a22673bb-3358-4fbc-b44d-80dac1c4e15b"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "54cb53c2-0e00-47d3-91a8-8f2c9a6558a3",
            "type": "retrospective_steps"
          },
          {
            "id": "34d19508-b3fd-45c2-92fb-87dcecbe0c08",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "a22673bb-3358-4fbc-b44d-80dac1c4e15b",
            "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.