Skip to main content
POST
/
api
/
v1
/
contacts
/
import
Import contacts from CSV
curl -X POST "https://api.callaro.ai/api/v1/contacts/import" \
  -H "X-Api-Key: $CALLARO_API_KEY" \
  -F "file=@contacts.csv" \
  -F 'column_mapping={"Phone":"phone_e164","First Name":"first_name"}'
{
  "data": {},
  "message": "<string>",
  "meta": {},
  "request_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Tenant-Id
string

Optional tenant context selector for JWT/partner key callers.

Body

multipart/form-data
file
file
required

CSV file containing contacts.

column_mapping
string

JSON string mapping CSV headers to contact fields.

options
string

Optional JSON string for import flags and defaults.

Response

Contact import accepted

data
object
message
string | null
meta
object
request_id
string | null