post https://external-api.xtremepush.com/api/external/hit/tags
Used to add a tag or update an attribute when an event occurs or an attribute changes outside your app, for example "balance.updated", "user.balance", etc.
For more information on attributes and tags review our dedicated guide.
Example
Update the balance attribute of a number of users:
curl --request POST \
--url https://external-api.xtremepush.com/api/external/hit/tags \
--header 'content-type: application/json' \
--data '{
"apptoken": "YOUR_APPTOKEN",
"tags": [
{
"device_id": "20",
"tag": "user.balance",
"value": "500.0"
},
{
"device_id": "21",
"tag": "user.balance",
"value": "550.0"
}
]
}'