Call api: /api/v2/search/contacts?query=[query]. => response is [ ]

Hi @Duong_nguyen_hoang1!

I’m not sure if I understood, but perhaps what you are looking for is to encode the uri with encodeURIComponent:

context: {
mobile: encodeURIComponent(phoneNumber)
}

phoneNumber “+5545999999999” will become: “%2B5545999999999”

2 Likes