cURL
curl --request POST \ --url https://api.sendx.io/api/v1/rest/contact/track \ --header 'Content-Type: application/json' \ --header 'X-Team-ApiKey: <api-key>' \ --data ' { "email": "test@example.com", "addTags": [ "new", "cool" ], "removeTags": [ "old", "bad" ] } '
{ "status": "200", "message": "OK" }
Legacy endpoint for tracking contact behavior through tags.
π― Key Features:
{ "addTags": ["blogger", "female"] }
{ "addTags": ["paid user"], "removeTags": ["trial user"] }
Team API key for authentication. Find your API key in SendX Settings β Team API Key.
Example:
X-Team-ApiKey: your_team_api_key_here
Tags to add to contact
Tags to remove from contact
Email address of the contact
"test@example.com"
β Contact tracked successfully
"200"
"OK"
Was this page helpful?