$ curl https://api.intercom.io/tags \
-X POST \
-H 'Authorization:Bearer <Your access token>' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' -d'
{
  "name": "Independent",
  "companies": [
    {
      "id" : "53427b7ecce5722303000003",
      "untag": true
    }
  ]
}HTTP/1.1 200 Ok
{
  "type": "tag",
  "name": "Follow Up",
  "id": "17513"
}You can untag a single or a list of companies.
| Parameters | Type | Required | Description | 
|---|---|---|---|
| name | String | Yes | The name of the tag which will be untagged from the. | 
| companies | Object | Yes | An array of objects with the unique idorcompany_idof the company to be untagged, and theuntagboolean set totrue. | 
This will return a Tag model for the tag that was unapplied to the given company.