Need help with scheduling the bot based on time trigger

Hello all.
I have a requirement where the bot should run twice a day (lets say 9:30 AM and 3 PM)
Should I use cron Expression for this?

Hi @ushanagiri123,

Yes, use a Time Trigger in Orchestrator.

You can either:

Option 1 (Recommended – Simple):
Create two separate time triggers:

One at 9:30 AM (Daily)
One at 3:00 PM (Daily)

This is clearer and easier to maintain.

Option 2 (Single CRON expression):
0 30 9,15 ? * *

This runs at 9:30 AM and 3:30 PM.
If you need 3:00 PM instead, create two triggers.

1 Like

@ushanagiri123

Use this CRON expression

0 0,30 9,15 ? * *
1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.