Skip to content

List Contacts



wss contact_list

The contact_list request returns a list of contacts.

NameTypeDescription
updated_atstringFirst name
limitstringNax number of contacts in the list
NameTypeDescription
contactsarray[string]List of user`s contacts
{
"request": {
"contact_list": {
"updated_at": "2025-08-13T05:51:44.733Z",
"limit": 56,
},
"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"
}
]
}
}