POST
/
customerbase
/
v1
/
contacts
/
import
curl --request POST \
  --url https://api.customeros.ai/customerbase/v1/contacts/import \
  --header 'Content-Type: multipart/form-data'
{
  "details": {
    "description": "<string>",
    "value": "<string>"
  },
  "requestId": "1234567890abcdef",
  "status": "success",
  "summary": {
    "failed": 123,
    "success": 123,
    "total": 123
  }
}

Body

multipart/form-data
file
file
required

CSV file with contact data (required headers: email, linkedin_url)

Response

201
application/json
All contacts imported successfully

Response structure for bulk operations with single error detail

details
object

Error details if any

requestId
string
Example:

"1234567890abcdef"

status
string

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

Example:

"success"

summary
object

Summary of the bulk operation