DELETE
/
v1
/
retrospective_processes
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/retrospective_processes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "8fb16525-14c0-4e01-a3bf-17d641d78ac0",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Et amet vel sed.",
      "description": "Dolores ab sit. Error fuga dignissimos. Enim esse nam.",
      "is_default": false,
      "created_at": "2025-05-08T00:23:53.415-07:00",
      "updated_at": "2025-05-08T00:23:58.554-07:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "7d581c0b-7734-478e-889c-f41369fed25d"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "0f82ff2f-567f-46e3-b190-6a6021b69d6a",
            "type": "retrospective_steps"
          },
          {
            "id": "d12ceb23-b6af-402a-8bb6-6203bc164d61",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "7d581c0b-7734-478e-889c-f41369fed25d",
            "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.