I am calling Object AQL API to filter on a value. But the API returns a "token recognition error" when the value being filtered has a double quote in it.
When my body looks like this, the API returns successfully:
{
"qlQuery": "ObjectType = Suppliers AND Name = Test"
}
{
"qlQuery": "ObjectType = Suppliers AND Name = T\"est"
}
Heard back from developer support and the right way to escape such values is:
T\\\"est
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.