I need some help with recurring workflows,
I have created a recurring event in backend which checks if any appointments are scheduled and if they are paid or not. If they are not paid, I cancel the appointments.
I need this event to run every 2 hours. Any suggestions on how to do this would be of great help.
I am on personal plan and it allows only monthly workflows.
You can schedule a WF itself. So you can schedule the first run, and in the bckend WF, schedule itself in 2hours.
Be aware that this kind of loop may stop sometimes if you reach max capacity for example or if there’s any error in wf
in the backend WF, if you schedule the same workflow (recursive loop) they will keep running in loop every 2 hours because each time it will run, it will schedule itself again and again
I have created a workflow to run every 30 mins, I initialized it the first time. It worked correctly for first two runs.
And then, the third run did not happen.
You can see that the workflow has run at 10:34. Ideally the next workflow has to run at 11:04.
But if I go to Scheduler section, There is no workflow scheduled.