Narendra
Narendra

Reputation: 3117

Azure CRON expression for each 15 days

I have a function app which I want to be triggered every alternate Tuesday. Can anyone suggest the cron expression.

Thanks

Upvotes: 0

Views: 494

Answers (1)

silent
silent

Reputation: 16148

Azure Functions uses standard CRON syntax. So using something like this to build them should work:

0 0 0 15 * ? *

(meaning: every 15th day of a month, I hope I got your request right)

Upvotes: 1

Related Questions