Hi, I'm quite new to Power Automate and Flows. As a school we just started using Microsoft Teams for our students since this unfortunate situation with the Covid-19.
I am trying to send a notification to all users in Teams to simulate a school bell (multiple occurrences a day). I've managed to create the flow that works every day on one certain time stamp. But I can't figure out how to do multiple a day.
I see you can select multiple hours and multiple minutes, but not a combination of that two.
The flow has to start at these 6 time stamps: 9:00, 10:30, 10:45, 12:15, 13:00, 14:45
Is it possible within one flow or do I have to make 6 seperate ones? With this code, it will start every given hour on every given minute
{
"recurrence": {
"frequency": "Week",
"interval": 1,
"timeZone": "W. Europe Standard Time",
"startTime": "2020-03-20T08:00:00.000Z",
"schedule": {
"weekDays": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday"
],
"hours": [
"9",
"10",
"12",
"13",
"14"
],
"minutes": [
0,
15,
30,
45
]
}
}
}
Hope someone can help.