# Tags Everything about tags ## List tags attached to a contact - [GET /contacts/{contact_id}/tags](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/contacts/listtagsforacontact.md): You can fetch a list of all tags that are attached to a specific contact. ## Add tag to a contact - [POST /contacts/{contact_id}/tags](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/contacts/attachtagtocontact.md): You can tag a specific contact. This will return a tag object for the tag that was added to the contact. ## Remove tag from a contact - [DELETE /contacts/{contact_id}/tags/{id}](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/contacts/detachtagfromcontact.md): You can remove tag from a specific contact. This will return a tag object for the tag that was removed from the contact. ## Add tag to a conversation - [POST /conversations/{conversation_id}/tags](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/conversations/attachtagtoconversation.md): You can tag a specific conversation. This will return a tag object for the tag that was added to the conversation. ## Remove tag from a conversation - [DELETE /conversations/{conversation_id}/tags/{id}](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/conversations/detachtagfromconversation.md): You can remove tag from a specific conversation. This will return a tag object for the tag that was removed from the conversation. ## List tags attached to a contact - [GET /contacts/{contact_id}/tags](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/tags/listtagsforacontact.md): You can fetch a list of all tags that are attached to a specific contact. ## Add tag to a contact - [POST /contacts/{contact_id}/tags](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/tags/attachtagtocontact.md): You can tag a specific contact. This will return a tag object for the tag that was added to the contact. ## Remove tag from a contact - [DELETE /contacts/{contact_id}/tags/{id}](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/tags/detachtagfromcontact.md): You can remove tag from a specific contact. This will return a tag object for the tag that was removed from the contact. ## Add tag to a conversation - [POST /conversations/{conversation_id}/tags](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/tags/attachtagtoconversation.md): You can tag a specific conversation. This will return a tag object for the tag that was added to the conversation. ## Remove tag from a conversation - [DELETE /conversations/{conversation_id}/tags/{id}](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/tags/detachtagfromconversation.md): You can remove tag from a specific conversation. This will return a tag object for the tag that was removed from the conversation. ## List all tags - [GET /tags](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/tags/listtags.md): You can fetch a list of all tags for a given workspace. ## Create or update a tag, Tag or untag companies, Tag contacts - [POST /tags](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/tags/createtag.md): You can use this endpoint to perform the following operations: You can create a new tag by passing in the tag name as specified in "Create or Update Tag Request Payload" described below. You can update an existing tag by passing the id of the tag as specified in "Create or Update Tag Request Payload" described below. You can tag single company or a list of companies. You can tag a company by passing in the tag name and the company details as specified in "Tag Company Request Payload" described below. Also, if the tag doesn't exist then a new one will be created automatically. You can untag a single company or a list of companies. You can untag a company by passing in the tag id and the company details as specified in "Untag Company Request Payload" described below. You can tag a list of users. You can tag the users by passing in the tag name and the user details as specified in "Tag Users Request Payload" described below. Each operation will return a tag object. ## Find a specific tag - [GET /tags/{id}](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/tags/findtag.md): You can fetch the details of tags that are on the workspace by their id. This will return a tag object. ## Delete tag - [DELETE /tags/{id}](https://developers.intercom.com/docs/references/2.7/rest-api/api.intercom.io/tags/deletetag.md): You can delete the details of tags that are on the workspace by passing in the id.