Home > Software design >  Azure Function with Logic App Recurrence trigger
Azure Function with Logic App Recurrence trigger

Time:12-31

What should I choose the trigger for Azure Function to use it on Logic Apps with Recurrence trigger ? On the Azure function there are an option such as HttpTrigger, EventTrigger, etc. What should I choose to trigger it using recurrence on Logic Apps ?

CodePudding user response:

You need to create Timer Triggered Azure function. You can follow the tutorial here and use the CRON expression to schedule as you required

Schedule 0 */1 * * * *

  • Related