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.
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.
Copyright © 2021 Jogjafile Inc.
You should change
Frequency
FromMinute
toDay
, then cilkAdd new parameter
to addAt these hours
andAt these minutes
.Because
At these minutes
cannot use cron expressions, you can only follow the format of0,2,4,6.....58
to make it execute every two minutes.If you have any other questions, please let me know.