Handle Scheduler through Microflows

0
Hi  I have a to design an functionality where, I need to get the status of few records stored in Mendix from external APIs. I created one scheduler to execute on every minute where it will hit external APIs to get the current status and update the records in Mendix. I have to Start and Stop this scheduler based on few conditions(Once all the records status is updated as Done) then i have to stop executing the Scheduler. Can you please suggest a way to start and Stop this Scheduler in Microflow?   Thanks and Regards    
asked
1 answers
3

One way to do it would be to simply add a check to the start of the scheduled action to check if your conditions have already been met. If they are met, immediately exit the flow. The scheduled event will still run, but it won't actually do anything.

 

 

 

answered