We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to this issue https://help.zoho.com/portal/community/topic/zoho-crm-api-v2-invalid-query-formed-error It is necessary to escape special characters in the query (e.g. brackets).
I feel that this should be done at the API level Here is some code that fails
module_instance = ZCRMSDK::Operations::ZCRMModule.get_instance('accounts') crm_data = criteria = "(Account_Name:equals:Acme (Co.))" api_res = module_instance.search_records_by_criteria(criteria) api_res.data[0] end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
According to this issue
https://help.zoho.com/portal/community/topic/zoho-crm-api-v2-invalid-query-formed-error
It is necessary to escape special characters in the query (e.g. brackets).
I feel that this should be done at the API level
Here is some code that fails
The text was updated successfully, but these errors were encountered: