API Reference
Getting Started
Contact
Campaign
Reports
Event
Webhook
Contact
Get Contact by Identifier
Retrieve a specific contact by its identifier.
GET
/
contact
/
{identifier}
Get Contact by Identifier
Copy
Ask AI
curl --request GET \
--url https://api.sendx.io/api/v1/rest/contact/{identifier} \
--header 'X-Team-ApiKey: <api-key>'
Copy
Ask AI
{
"id": "a1b2c3d4e5",
"firstName": "Jane",
"lastName": "Doe",
"email": "jane.doe@example.com",
"company": "Tech Solutions Inc.",
"customFields": {
"Position": "VIP",
"Status": "Special Offer Subscriber"
},
"unsubscribed": false,
"bounced": false,
"spam": false,
"created": "2024-10-08T09:30:00Z",
"updated": "2024-10-08T12:45:00Z",
"blocked": false,
"dropped": false,
"LTV": 5000,
"contactSource": 8,
"lastTrackedIp": "192.168.0.1",
"lists": [
"sendx123",
"sendx233"
],
"tags": [
"223",
"3232"
]
}
Authorizations
Path Parameters
The ID or Email of the contact to retrieve.
Example:
"john@doe.com"
Response
200
application/json
Retrieved contact successfully.
The response is of type object
.
Was this page helpful?
Get Contact by Identifier
Copy
Ask AI
curl --request GET \
--url https://api.sendx.io/api/v1/rest/contact/{identifier} \
--header 'X-Team-ApiKey: <api-key>'
Copy
Ask AI
{
"id": "a1b2c3d4e5",
"firstName": "Jane",
"lastName": "Doe",
"email": "jane.doe@example.com",
"company": "Tech Solutions Inc.",
"customFields": {
"Position": "VIP",
"Status": "Special Offer Subscriber"
},
"unsubscribed": false,
"bounced": false,
"spam": false,
"created": "2024-10-08T09:30:00Z",
"updated": "2024-10-08T12:45:00Z",
"blocked": false,
"dropped": false,
"LTV": 5000,
"contactSource": 8,
"lastTrackedIp": "192.168.0.1",
"lists": [
"sendx123",
"sendx233"
],
"tags": [
"223",
"3232"
]
}
Assistant
Responses are generated using AI and may contain mistakes.