Bot scheduling multiple times a day

HI team,

Please help me scheduling the bot every monday 11am 12pm 2.15pm 3.15pm
How is chronic expression built for the same

Regards,
Supriya

Is is probably not doable in single cron expression.
You will need two like follows:

0 0 11,12 ? * * *
0 15 14,15 ? * * *

More e.g. here:

Cheers

How Will I add two expression in 1 trigger

Hi @supu123
create two triggers fr same process

one 11 am 12 pm -------- 0 0 11,12 ? * MON *

second 2.15 3.15 pm----- 0 15 14,15 ? * MON *

hope this helps u

You can’t. You need two triggers. Or simplify your chedule requirements.

To run every Monday correct cron exp is below
0 0 11,12 ? * MON *
0 15 14,15 ? * MON *

Cheers