Gaurav Karnik
Gaurav Karnik

Reputation: 1

Scheduling Logic App to run Quarterly

I want to schedule a logic app to run on 10th day following the end of each quarter(10th January, 10th April, 10th July and 10th October).

I thought the configuring for recurrence trigger should be with following settings:

Interval: 4

Frequency: Month

Time zone: Easter Time

Start time: 2018-01-10T10:00:00Z

I tried with start time close to the current local time for testing but its not getting triggered. Need help.

Upvotes: 0

Views: 1466

Answers (1)

Szymon Wylezol
Szymon Wylezol

Reputation: 1466

Notice that you are specifying start time in UTC (the 'Z' format identifier); you want to specify it in local time instead.

{
   "startTime": "2018-01-10T10:00:00",
   "timeZone": "Eastern Standard Time"
}

Full documentation for complex schedules is available here: https://learn.microsoft.com/en-us/azure/connectors/connectors-native-recurrence

Here is the documentation for complex schedules: learn.microsoft.com/en-us/azure/connectors/…

Upvotes: 2

Related Questions