$ curl https://api.intercom.io/tags \\\n-H 'Authorization:Bearer <Your access token>' \\\n-H 'Accept: application/json'
{\n \"type\": \"tag.list\",\n \"tags\": [\n {\n \"type\": \"tag\",\n \"name\": \"Beta User\",\n \"id\": 1\n },\n {\n \"type\": \"tag\",\n \"name\": \"Amazing User\",\n \"id\": 2\n },\n {\n \"type\": \"tag\",\n \"name\": \"Epic User\",\n \"id\": 3\n }\n ]\n}
You can fetch the tags for an App by sending a GET
request to https://api.intercom.io/tags
.
None.
A list of tag objects for the App.
Attribute | Type | Description |
---|---|---|
type | string | value is 'tag.list' |
tags | array | A list of tag objects |