Track API
cURL
curl --request PUT \ --url 'https://api.getvero.com/api/v2/users/tags/edit?auth_token=' \ --header 'Content-Type: application/json' \ --data ' { "id": 1000, "add": [ "prospect" ], "remove": [ "prospect" ] } '
{ "status": 200, "message": "Success." }
This endpoint adds/removes tags to a user’s profile.
The unique identifier of the user.
1000
An array of tags to add.
An array of tags to remove.
OK
200
"Success."
Was this page helpful?