# Delete a tag ## Example Delete Tag Request ```curl $ curl https://api.intercom.io/tags/17513 \ -X DELETE \ -H 'Authorization:Bearer ' \ -H 'Accept: application/json' ``` ```ruby # Not exposed in Ruby client ``` ```php ``` ```java Tag.delete(tag); ``` You can delete a single tag. ### Request Path Parameters | Paremeter | Type | Required? | Description | | --- | --- | --- | --- | | id | String | Yes | The unique identifier of the tag. | ### Response This will return a [Tag Model](/docs/references/2.5/rest-api/tags/tag-model) of the tag you just deleted.