> ## 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 Opportunity Status

> Delete a status; opportunities using it are detached, not deleted

<Warning>
  **Deprecated — a status is a [tag](/tags).** Use [Delete
  Tag](/api-reference/delete-tag); a status id is that tag's id.
</Warning>

## Path Parameters

<ParamField path="id" type="string" required>
  Status UUID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.clustr-ai.com/api/public/opportunity-statuses/5e6f7a8b-..." \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

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

  ```json 401 theme={null}
  {
    "success": false,
    "error": { "message": "Invalid or missing API key", "code": "UNAUTHORIZED" }
  }
  ```
</ResponseExample>
