POST
/
customerbase
/
v1
/
contacts
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"
}

Authorizations

X-CUSTOMER-OS-API-KEY
string
header
required

Body

file
file

CSV file with contact data

Response

200
application/json
Successfully created single contact

Response structure for single contact operations

contact
object

The contact information

requestId
string
Example:

"1234567890abcdef"

status
string

Status indicates the result of the operation ("success" or "error")

Example:

"success"