> ## 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 Account Tag

> Remove a tag from your vocabulary

<Warning>
  **This removes the tag from every account carrying it**, and cannot be undone.

  To clear the tags on ONE account instead, send an empty list to
  [Set An Account's Tags](/api-reference/set-account-tags). That is a different
  act and it is reversible.
</Warning>

Check how many accounts are affected first: `GET /account-tags?with_counts=true`
returns an `account_count` per tag.

## Path Parameters

<ParamField path="id" type="string" required>
  The tag's id, from [List Account Tags](/api-reference/list-account-tags).
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.clustr-ai.com/api/public/account-tags/7f3e1a22-..." \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": { "deleted": true }
  }
  ```

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