#
Add contacts bulk
Add new contacts in bulk. When a given phone number already exists, it updates existing contact.
#
Method
POST
#
Path
/contact/bulk
#
Body parameters
#
Response
#
HTTP status codes
#
Response object
#
Code sample
curl --location --request POST 'https://api.sociocs.com/contact/bulk' \
--header 'apikey: [your api key]' \
--header 'Content-Type: application/json' \
--data-raw '{
"list_id": 0,
"phone_number_cc": "1",
"records": [
{
"phone_number": "16175551212",
"name": "John Johnson"
},
{
"phone_number": "16175551111",
"name": "David Davidson"
}
]
}'