Announcements
{ "subject": "Weekly follow‑up", "body": { "contentType": "HTML", "content": "Weekly Meeting Call." }, "start": { "dateTime": "2025-07-23T09:00:00", "timeZone": "W. Europe Standard Time" }, "end": { "dateTime": "2025-07-23T10:00:00", "timeZone": "W. Europe Standard Time" }, "location": { "displayName": "Teams meeting" }, "attendees":@{body('Select')}, //from selection of list group members. "allowNewTimeProposals": true, "isOnlineMeeting": true, "onlineMeetingProvider": "teamsForBusiness" }
The regular "Create Event (V4)" action (not the group-specific one) can create events in group calendars and supports attendees:
group-calendar-id@yourdomain.com
To get the group calendar ID:
For full control, use the Graph API directly:
POST
https://graph.microsoft.com/v1.0/groups/{group-id}/calendar/events
Content-Type: application/json
{ "subject": "@{variables('EventTitle')}", "start": { "dateTime": "@{variables('StartTime')}", "timeZone": "UTC" }, "end": { "dateTime": "@{variables('EndTime')}", "timeZone": "UTC" }, "attendees": [ { "emailAddress": { "address": "user1@domain.com", "name": "User One" }, "type": "required" }, { "emailAddress": { "address": "user2@domain.com", "name": "User Two" }, "type": "optional" } ] }
Alternative approach:
If you just need to notify people:
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Haque 589
Valantis 328
David_MA 284 Super User 2026 Season 1