Detach a contact from a tag

Example Request & Response

$ curl https://api.intercom.io/contacts/<contact_id>/tags/<id> \\\n-X DELETE \\\n-H 'Authorization:Bearer <Your access token>' \\\n-H 'Accept:application/json'\n

Example Errors

HTTP/1.1 404 NOT FOUND\n{\n  \"type\": \"error.list\",\n  \"request_id\": \"9a3d0816-9707-4598-977e-c009ba630148\",\n  \"errors\": [\n    {\n      \"code\": \"not_found\",\n      \"message\": \"Contact Not Found\"\n    }\n  ]\n}

You can untag a single contact.

Request Path Parameter

ParameterTypeRequiredDescription
contact_idStringYesThe unique identifier for the contact which is given by Intercom
idStringYesThe unique identifier for the tag which is given by Intercom

Response

This will return a Tag model for the tag that was removed from the contact.