Delete a tag

Example Delete Tag Request

$ curl https://api.intercom.io/tags/17513 \
-X DELETE \
-H 'Authorization:Bearer <Your access token>' \
-H 'Accept: application/json'
# Not exposed in Ruby client
<?php
// Not exposed in PHP client
?>
Tag.delete(tag);

You can delete a single tag.

Request Path Parameters

ParemeterTypeRequired?Description
idStringYesThe unique identifier of the tag.

Response

This will return a Tag Model of the tag you just deleted.