The above logic app triggers and runs for every 2 min. how to set timing(3hrs) and for each day(every day) at 9 am?
eg: 10 Sep 2020 at 9 am to 12 should run, every 2 min trigger and finishs the task.
You should change Frequency
From Minute
to Day
, then cilk Add new parameter
to add At these hours
and At these minutes
.
Because At these minutes
cannot use cron expressions, you can only follow the format of 0,2,4,6.....58
to make it execute every two minutes.
If you have any other questions, please let me know.