Hi All,
I am trying to search for an object based on the "Phone Number" and this is my
POST request -Body:
{ "qlQuery": "'Phone Number' LIKE '111'" }
On passing this, I have got this error:
"AQL \"'Phone Number' LIKE '111'\" has invalid syntax at position 7 with error message \"no viable alternative at input ' N'\""
Not sure how to pass the object name with space in it. I have tried with single and double quote combinations. The existings POSTs in the community answers for the "GET" call with quesry string but the problem is now with the POST call and needs to pass the query as the BODY of the request.
Any help will be highly appreciated
Thanks,
Kavitha
Have you tried
{ "qlQuery": "\"Phone Number\" LIKE '111'" }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome! I am glad it helped
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.