Used to get a list of the tags that have been reported in your project, for example "home_page", "news_page", "checkout_btn", etc.

Types are displayed by their identifier. See Type identifiers.

For more information on attributes and tags review our dedicated guide.

Example

Get all tags matching the condition. Order by ascending ID, and display tag ID and title. For best results, we recommend setting a limit and pagination on your query. Send several requests to obtain the full list:

curl --request POST \
  --url https://external-api.xtremepush.com/api/external/list/tag \
  --header 'content-type: application/json' \
  --data '{
    "apptoken": "YOUR_APPTOKEN",
    "order": ["id ASC"],
    "select": ["id", "title"],
    "condition": [
      ["id", ">", 3113692]
    ],
    "limit": 50,
    "offset": 0
  }'
Language
Click Try It! to start a request and see the response here!