post https://external-api.xtremepush.com/api/external/batch-create/tag
Used to create a batch of new tags or attributes. Once created these can be updated using tag/tags methods or the profile import method.
For more information on attributes and tags review our dedicated guide.
Example
Create multiple new custom User Profile attributes
curl --request POST \
--url https://external-api.xtremepush.com/api/external/batch-create/tag \
--header 'content-type: application/json' \
--data '{
"apptoken": "YOUR_APPTOKEN",
"data": [
{
"title": "Test Attribute 1",
"attribute_profile": 1,
"type": 0
},
{
"title": "Test Attribute 2",
"attribute_profile": 1,
"type": 1
}
]
}'