I am creating an Extension for Zoho CRM using Zoho Sigma Platform
Start_DateTime:
criteria = "(Start_DateTime:greater_than:2025-12-20T00:00:00+00:00)";url = "crm/v8/Events/search?criteria=" + zoho.encryption.urlEncode(criteria) + "&fields=id";response = invokeapi[service: ZohoCRMpath: urltype: GET];info response;return response;
This works correctly if I create a function in user (production) environment, but the same code does not work in the Function on sandbox.
In the sandbox, the response is empty, even though:
The Events with same date exists in both environment
The same criteria and API version are
Events/search API?