post https://external-api.xtremepush.com/api/external/list/tag
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 select ID and title:
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]
]
}'