> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bedrock.quarry-systems.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Scope Type Hierarchy Edge

> Remove a parent-child relationship between two scope types

## Path Parameters

<ParamField path="parentTypeId" type="string" required>
  The parent scope type ID
</ParamField>

<ParamField path="childTypeId" type="string" required>
  The child scope type ID
</ParamField>

## Response

Returns a success confirmation.

<Warning>
  Removing a type hierarchy edge may affect existing scope hierarchies that rely on this relationship.
</Warning>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE 'https://api.example.com/scope-type-hierarchy/type_org/type_team' \
    -H 'Authorization: Bearer YOUR_TOKEN'
  ```

  ```javascript Node.js theme={null}
  const axios = require('axios');

  const { data } = await axios.delete('https://api.example.com/scope-type-hierarchy/type_org/type_team', {
    headers: { 'Authorization': 'Bearer YOUR_TOKEN' },
  });
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true
  }
  ```
</ResponseExample>
