当我尝试在工作流下执行Deluge脚本时,当我为Account模块编写函数时,我收到一个错误,其中我需要根据过滤条件来获取记录。我运行下面的查询脚本,但它显示了错误。
response=zoho.crm.searchRecords("Accounts", "(Account Name|starts with|A*)");
info response;错误响应:
{"code":"INVALID_QUERY","details":{},"message":"invalid query formed","status":"error"}这个查询是Zoho博客本身提供的默认查询。我只是复制并粘贴了它。
现在我使用的是试用Zoho账号。可能是因为这个原因吧?
发布于 2018-10-25 20:55:17
请使用以下脚本,因为您的搜索函数是用V1接口编写的,该接口已于2018年2月折旧。请参阅链接:https://www.zoho.com/deluge/help/script/crm-search-records-v2.html
response=zoho.crm.searchRecords("Accounts", "(Account_Name:starts_with:A*)");
info response;https://stackoverflow.com/questions/51303561
复制相似问题