cURL
minimal_identify
curl --request POST \ --url https://api.sendx.io/api/v1/rest/contact/identify \ --header 'Content-Type: application/json' \ --header 'X-Team-ApiKey: <api-key>' \ --data ' { "email": "[email protected]" } '
{ "status": "200", "message": "OK" }
Endpoint for identifying contacts. Creates or updates a contact.
🎯 Key Features:
{ "email": "[email protected]", "firstName": "John", "lastName": "Doe", "birthday": "1989-03-03", "customFields": { "Designation": "Software Engineer", "Age": "27", "Experience": "5" }, "tags": ["Developer", "API Team"] }
Team API key for authentication. Find your API key in SendX Settings → Team API Key.
Example:
X-Team-ApiKey: your_team_api_key_here
Show child attributes
New email when updating existing contact
✅ Contact identified successfully
"200"
"OK"
Was this page helpful?