I have read the documentation on Javascript Workflow but I haven’t found a method that adds buffer time to a script, similar to Utilities.sleep() function in Google Sheets’ AppScript. Does anyone have a workaround for this case?
Hi,
Basically, the methods in the document are all the built-in methods you can use in the javascript workflow. There is no method like Utilities.sleep() so far. If we add this method afterwards, you’ll see it on the method list in the document.
I have a need for this as well.
My function retrieves data from an API external to Ragic, and the API limits the number inquiries per unit of time. If I could introduce a delay it would help me avoid errors the API returns when I submit too many inquiries in too little time.