I am having trouble in querying the contact using phone number.
If the phone number contain only numeric e.g. 1234567890, it works fine.
However
if it contains "-", "+", "(" or ")", the api fails. This means I can
not query international numbers or the standard format in which US
numbers are written. e.g. "(123) 456-7890" or "+44 1234567890". This
creates ambiguity. I passed these characters by encoding only. I even tried to put quotes around whole phone number.
https://domain.freshdesk.com/contacts.json?query=phone%20is%20%1234567890 : Pass
https://domain.freshdesk.com/contacts.json?query=phone%20is%20(123)456-7890 : Fail
https://domain.freshdesk.com/contacts.json?query=phone%20is%20%2B441234567890 : Fail
Does anybody has any idea how to query phone number having such (valid) characters?