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

# Remove Tag from Contact

To remove a tag from a contact, use the [Update Contact](/automate-chats/api-reference/contacts/update-contact) (`PUT /api/contacts/{id}`) endpoint.

Provide the updated array of `tagsId` in the request body, explicitly omitting the tag ID you want to remove.

**Example Payload:**

```json theme={null}
{
  "tagsId": [
    "your_tag_id_1" // Keep this tag, omit the one to remove
  ]
}
```
