Trying to return today's meetings in Deluge
Hello,
Getting an invalid query error for this code:
today = zoho.currentdate.toString("yyyy-MM-dd");
info today;
todaysmeetings = zoho.crm.searchRecords("Events","(Start_DateTime:starts_with:" + today + ")");
info todaysmeetings;
Here is my info log:
- 2024-08-16
- {"code":"INVALID_QUERY","details":{},"message":"Invalid query formed","status":"error"}
Below is an example meeting record in a JSON viewer. I've confirmed that there are meetings starting with "2024-08-16" and I confirmed the API name of our meetings module is "Events"
Thanks in advance!