post https://api.eu.xtremepush.com/list/tag-hit
Used to get information on devices hitting the tags that have been seen.
For more information on attributes and tags review our dedicated guide.
Returned attributes
- tag_id
intID of tag - device_id
intID of the device that made the hit - type
stringplatform where the tag is hit (eg. Android, iOS, web) - metric_id
intID of the metric attached to the hit - value
mixedvalue related to tag if set; elsenull - create_time
inttimestamp of hit
Examples
Get all tag hits in a paginated format. For best results, we recommend setting a limit on your query. Send several requests to obtain the full list:
curl --request POST \
--url https://api.eu.xtremepush.com/api/external/list/tag-hit \
--header 'content-type: application/json' \
--data '{
"apptoken": "YOUR_APPTOKEN",
"limit": 50,
"offset": 0,
"select": ["create_time", "tag_id", "device_id"]
}'