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

# Delete Tag

> Delete a tag

## Endpoint

<Card>
  <strong>DELETE</strong> `/backend/tags/{id}`
</Card>

## Path Parameters

<ParamField path="id" type="string" required>
  Tag ID to delete
</ParamField>

## Request Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.leavo.ai/backend/tags/tag-uuid" \
    -H "Authorization: Bearer your_api_key_here"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.leavo.ai/backend/tags/tag-uuid', {
    method: 'DELETE',
    headers: {
      'Authorization': 'Bearer your_api_key_here'
    }
  });
  ```
</CodeGroup>

## Response

```
HTTP 204 No Content
```

<Info>
  Deleting a tag automatically removes it from all leads that have it.
</Info>
