Cron Expressions Orchestrator

Hi,
The bot needs to be scheduled to run every 3 minutes.

Kindly guide me with what cron expression I can use in the trigger to achieve the above case.

Thanks and Regards,
Kanak

1 Like

Hello @Kanak_Jain

Can you try this?
image


0 0/3 0 ? * * *

also have a look here:

Hi @Kanak_Jain

Do you have any specific day or date to run the bot?

image

Regards
Gokul

Hi @Gokul001,
No, The will run 24 hours.

Okay @Kanak_Jain

Then you can follow the Cron expression 0 0/3 0 ? * * *

Regards
Gokul

I’ve tried the expression, and this is what it shows
image
It will only run between 12 am and 12:59 am.

Thank You so much for the link, I found what I was looking for.

The following expression works for every 3 minutes, 24 hours
Cron Expression: 0 0/3 * ? * * *

Hi @Kanak_Jain

Try with this 0 0/3 * ? * * *

image

Regards
Gokul

Thank You!

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