The bot should start the trigger in every 10 mins from 9.00 AM to 12.00 AM.
Please provide a cron expression for this.
The bot should start the trigger in every 10 mins from 9.00 AM to 12.00 AM.
Please provide a cron expression for this.
Hi @1825
The below one is work for 9AM to 12PM
0 0/10 9-12 * * ?
Check the expression description in the below image,
Note : In question you have asked for 9AM to 12AM, I thought it may be from 9AM to 12PM
Hope it helps!!
hey @1825
0 0/10 9-12 ? * * *
Welcome to the community
please try this
0 0/10 9-12 ? * * *
and for cron you can use this side
cheers
will this work till 12.00 Am or 12.00 PM
This will work untill 12:00PM only @1825
Would you like to trigger untill 12AM or 12PM
Trigger should be from 9.00 Am till 12.00AM for every 10 min
Then you have to use the below one,
0 0/10 9-23 ? * * *
This will trigger from 9:00AM to 11:59PM
Hope you understand!!