How to overcome Zoho Deluge's time limit?
I have built a function according to the following scheme:
- pages = {1,2,3,4,5,6,7,8,9,10};
- for each page in pages {
- entriesPerPage = zoho.crm.getRecords("Accounts",page,200);
- for each entry in entriesPerPage {
- …
- }
- }
Unfortunately, we have too many entries in Zoho CRM for the function to run for all of them. It terminates after the runtime of 5 minutes.
How can I override this maximum duration of Zoho Deluge so that the function actually runs for all pages and entries?