CustomerOS Data API
Creates a contact from either JSON or CSV upload
curl --request POST \ --url https://api.customeros.ai/customerbase/v1/contacts \ --header 'Content-Type: application/json' \ --header 'X-CUSTOMER-OS-API-KEY: <api-key>' \ --data '{}'
{ "contact": { "contactId": "<string>", "email": "<string>", "linkedinUrl": "<string>" }, "requestId": "1234567890abcdef", "status": "success" }
CSV file with contact data
Response structure for single contact operations
The contact information
Show child attributes
Contact's unique identifier example: contact-123
Contact's email address example: john@example.com
Contact's LinkedIn profile URL example: https://linkedin.com/in/john-doe
"1234567890abcdef"
Status indicates the result of the operation ("success" or "error")
"success"