curl --location --request POST 'https://callerapi.com/api/partners/contacts/upload' \
--header 'Content-Type: application/json' \
--header 'x-auth;' \
--data-raw '{
"external_user_id": "user_12345",
"external_user_phone": "+14155550123",
"contacts": [
{
"phone_number": "+12125551234",
"name": "Alice Example",
"email": "alice@example.com"
},
{
"phone_number": "+14155559876",
"name": "Bob Example"
}
]
}'
{
"failed": 0,
"inserted": 2,
"status": "success"
}