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

# Delete Tag

## `DELETE`a tag

`DELETE` `/user-api/v1/tags/:id`

### Path Parameters

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

### Query Parameters

<ParamField path="include" type="string">
  Related data to include: `contacts`, `companies`, `tasks`
</ParamField>

### Endpoint Example

`DELETE` `/user-api/v1/tags/tag_99999?include=contacts,companies,tasks`

### Response

```json theme={null}
{
  "data": {
    "id": "tag_99999",
    "name": "Premium Client",
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-01-15T12:45:00Z",
    "contacts": [
      {
        "id": "contact_123",
        "full_name": "John Doe",
        "image_url": "https://example.com/avatar.jpg"
      }
    ],
    "companies": [
      {
        "id": "company_789",
        "name": "Tech Corp",
        "logo_url": "https://example.com/logo.png"
      }
    ],
    "tasks": [
      {
        "id": "task_101",
        "body": "Schedule meeting"
      }
    ]
  }
}
```
