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

# Delete Tier

> Remove a tier and clear it off every account that carried it

The accounts themselves are untouched — only the reference clears. The
response reports how many were affected.

## Path Parameters

<ParamField path="id" type="string" required>
  The tier's id.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.clustr-ai.com/api/public/tenant-tiers/1a2b3c4d-..." \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": { "message": "Tier deleted successfully", "affected_accounts": 12 }
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": { "message": "tier not found", "code": "NOT_FOUND" }
  }
  ```
</ResponseExample>
