Skip to content

Batch Add Contacts



wss contacts

All the same as in contact_add but focused on sending several contacts at once.

{
"request": {
"contacts": [
{
"first_name": "Name",
"last_name": "Surname",
"company": "UserCompany",
"email": [ { "type": "work", "value": "..." } ],
"phone": [ { "type": "home", "value": "..." } ]
},
{
"first_name": "Name2",
"last_name": "Surname2",
"company": "UserCompany2",
"email": [ { "type": "work", "value": "..." } ],
"phone": [ { "type": "home", "value": "..." } ]
},
...
]
"id": "RequestId"
}
}
{
"response": {
"id": "RequestId",
"contacts": [
{
"_id": "63480e68f4794709f802a2fa",
"first_name": "Name",
"last_name": "Surname",
"company": "UserCompany",
"email": [{ "type": "home", "value": "..." }],
"phone": [
{ "type": "home", "value": "...", "matched_user_id": "UID7" }
],
"updated_at": "2025-08-13T05:51:44.733Z",
"created_at": "2025-08-13T05:51:44.733Z"
},
{
"_id": "63480e68f4794709f802a2fy",
"first_name": "Name2",
"last_name": "Surname2",
"company": "UserCompany2",
"email": [{ "type": "home", "value": "..." }],
"phone": [
{ "type": "home", "value": "...", "matched_user_id": "UID6" }
],
"updated_at": "2025-08-13T05:51:44.733Z",
"created_at": "2025-08-13T05:51:44.733Z"
}
]
}
}