Recurrence Builder
Configure your Power Automate schedule trigger visually. See the schedule described in plain English and copy the JSON configuration directly into your flow.
Schedule in plain English
Runs every day at 09:00 UTC
Power Automate recurrence configuration
{
"type": "Recurrence",
"recurrence": {
"frequency": "Day",
"interval": 1,
"timeZone": "UTC",
"startTime": "2026-01-01T09:00:00Z"
}
}Tips
The time zone name must match a Windows time zone ID for Power Automate to accept it. All options in the list above are valid Windows time zone names.
For monthly runs, Power Automate runs on the specific calendar day. If you pick day 31 and a month has fewer than 31 days, the run will be skipped for that month.
The JSON output shows the trigger configuration block. In the flow JSON, this goes inside thetriggersobject of the flow definition.