Skip to content

Find a specific tag

Request

You can fetch the details of tags that are on the workspace by their id. This will return a tag object.

Security
bearerAuth
Path
tag_idstringrequired

The unique identifier of a given tag

Example:123
Headers
Intercom-Versionstring(intercom_version)

Intercom API version.
By default, it's equal to the version set in the app package.

Default:"2.16"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:2.16
curl -i -X GET \
  https://api.intercom.io/tags/123 \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Intercom-Version: 2.16'

Responses

Tag found

Bodyapplication/json
typestring

value is "tag"

Example:"tag"
idstring

The id of the tag

Example:"123456"
namestring

The name of the tag

Example:"Test tag"
Response
{ "type": "tag", "id": "113", "name": "Manual tag" }