cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
ChadVKealey
Memorable Member
Memorable Member

Getting events from Group Calendar

I want to create a flow that will send an email once a week with a list of upcoming events from the calendar associated with a M365 Group. There is no action in the Office 365 Groups connector to get calendar events from a group calendar. I tried using that actions in the Office 365 Outlook connector ("Get events (v4)" and "Get calendar view of events"), but Group calendars don't show up in the drop-down of my calendars. 

 

I suspect that I could give one the O365 Outlook actions the ID (guid) of the Group calendar, it would work. However, there doesn't seem to be a way to get that. I've tried getting the group's properties (via Power Automate and Graph Explorer), but none of the methods has produced that calendar ID as an output.

13 REPLIES 13
Mari
Community Support
Community Support

Hi! Have you tested this already: List calendars - Microsoft Graph v1.0 | Microsoft Docs?

I didn't try that specifically, but I did use the Graph Explorer to "get all my calendars" (from the Outlook section) and it only returned those that listed under "My calendars" in Outlook (that is, my personal calendars and Planner calendars that I've "added to" my personal calendar), none of the calendars for any of my Groups/Teams show up.

Bigshow
Helper II
Helper II

Hi all

Has anyone found a solution to this? i too also want to be able to get group events and send them on an email on a regular basis

VictorIvanidze
Community Champion
Community Champion

mercobenitas
New Member

I have it working; see below my flow.

 

Step 1. Go to https://developer.microsoft.com/en-us/graph/graph-explorer and sign in with your credentials

Step 2. Go to Section Groups

Step 3. Go to "all groups I belong to (direct or indirect membership) with count" and 'Run query'. Then find the 'id' of the group with the SharePoint Group calendar, and copy or write this down.

Step 4. Go to "group's events", use the id you just wrote down, then 'Run query'. In theory, you should see your group calendar events returned.

 

Next, go to Power Automate and create a 'scheduled cloud flow'. The trick is to work with Action "Send an HTTP request" and use the URL from the Graph Explorer (in my example below I filter on all events with 'PTO' in the subject):

https://graph.microsoft.com/v1.0/groups/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/events?$filter=contains(subject , 'PTO') and start/dateTime ge '@{utcNow()}'&$orderby=start/dateTime asc&$top=100

My flow (I'm sure others can make it more efficient and look better, but it works for me)

 

2022-12-13_14-36-56.png

2022-12-13_14-37-35.png2022-12-13_14-37-56.png2022-12-13_14-38-49.png

 

Let me know if you have questions.

 

Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If this post or my previous reply was useful in other ways, please consider giving it Thumbs Up.

Thanks! I'll have to give that a shot.

Anonymous
Not applicable

Ok, I have the group ID, but I can not get past HTTP request.   

Under OUTPUTS I see 

{
  "error": {
    "code"400,
    "message""URI path is not a valid Graph endpoint, path is neither absolute nor relative or resource/object is not supported for this connector. Resources: me,users Objects: messages,mailFolders,events,calendar,calendars,outlook,inferenceClassification. Uri: https://graph.microsoft.com/v1.0/groups/0z00000z-0000-00zz-0zz0-0z000z00z0zz/events/?$filter=contain...",
    ................

I see we can use spaces instead of %20, yes? 

Does the group ID need {curly brackets} or quote marks, or just typed in as shown?   Number typed in here is fake for security reasons

Could be a permission issue? or would that be a 500 error instead of 400?  I am running from inside the teams environment on the team with the calendar so that should be ok. 

It looks like you are using wrong "Send an HTTP request" action. It should be the one from "Office 365 Groups" connector.

________________________________________________________

Welcome to my web site.

Can you specify the Schema for the Parse JSON? 

mercobenitas, can you post the schema for the JSON parse? Thanks.

{
    "type": "object",
    "properties": {
        "value": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "string"
                    },
                    "createdDateTime": {
                        "type": "string"
                    },
                    "lastModifiedDateTime": {
                        "type": "string"
                    },
                    "changeKey": {
                        "type": "string"
                    },
                    "originalStartTimeZone": {
                        "type": "string"
                    },
                    "originalEndTimeZone": {
                        "type": "string"
                    },
                    "iCalUId": {
                        "type": "string"
                    },
                    "reminderMinutesBeforeStart": {
                        "type": "integer"
                    },
                    "isReminderOn": {
                        "type": "boolean"
                    },
                    "hasAttachments": {
                        "type": "boolean"
                    },
                    "subject": {
                        "type": "string"
                    },
                    "bodyPreview": {
                        "type": "string"
                    },
                    "importance": {
                        "type": "string"
                    },
                    "sensitivity": {
                        "type": "string"
                    },
                    "isAllDay": {
                        "type": "boolean"
                    },
                    "isCancelled": {
                        "type": "boolean"
                    },
                    "isOrganizer": {
                        "type": "boolean"
                    },
                    "responseRequested": {
                        "type": "boolean"
                    },
                    "showAs": {
                        "type": "string"
                    },
                    "type": {
                        "type": "string"
                    },
                    "webLink": {
                        "type": "string"
                    },
                    "responseStatus": {
                        "type": "object",
                        "properties": {
                            "response": {
                                "type": "string"
                            },
                            "time": {
                                "type": "string"
                            }
                        }
                    },
                    "body": {
                        "type": "object",
                        "properties": {
                            "contentType": {
                                "type": "string"
                            },
                            "content": {
                                "type": "string"
                            }
                        }
                    },
                    "start": {
                        "type": "object",
                        "properties": {
                            "dateTime": {
                                "type": "string"
                            },
                            "timeZone": {
                                "type": "string"
                            }
                        }
                    },
                    "end": {
                        "type": "object",
                        "properties": {
                            "dateTime": {
                                "type": "string"
                            },
                            "timeZone": {
                                "type": "string"
                            }
                        }
                    },
                    "location": {
                        "type": "object",
                        "properties": {
                            "displayName": {
                                "type": "string"
                            }
                        }
                    },
                    "recurrence": {
                        "type": "object",
                        "properties": {
                            "pattern": {
                                "type": "object",
                                "properties": {
                                    "type": {
                                        "type": "string"
                                    },
                                    "interval": {
                                        "type": "integer"
                                    },
                                    "month": {
                                        "type": "integer"
                                    },
                                    "dayOfMonth": {
                                        "type": "integer"
                                    },
                                    "daysOfWeek": {
                                        "type": "array",
                                        "items": {
                                            "type": "string"
                                        }
                                    },
                                    "firstDayOfWeek": {
                                        "type": "string"
                                    },
                                    "index": {
                                        "type": "string"
                                    }
                                }
                            },
                            "range": {
                                "type": "object",
                                "properties": {
                                    "type": {
                                        "type": "string"
                                    },
                                    "startDate": {
                                        "type": "string"
                                    },
                                    "endDate": {
                                        "type": "string"
                                    },
                                    "recurrenceTimeZone": {
                                        "type": "string"
                                    },
                                    "numberOfOccurrences": {
                                        "type": "integer"
                                    }
                                }
                            }
                        }
                    },
                    "attendees": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "type": {
                                    "type": "string"
                                },
                                "status": {
                                    "type": "object",
                                    "properties": {
                                        "response": {
                                            "type": "string"
                                        },
                                        "time": {
                                            "type": "string"
                                        }
                                    }
                                },
                                "emailAddress": {
                                    "type": "object",
                                    "properties": {
                                        "name": {
                                            "type": "string"
                                        },
                                        "address": {
                                            "type": "string"
                                        }
                                    }
                                }
                            },
                            "required": [
                                "type",
                                "status",
                                "emailAddress"
                            ]
                        }
                    },
                    "organizer": {
                        "type": "object",
                        "properties": {
                            "emailAddress": {
                                "type": "object",
                                "properties": {
                                    "name": {
                                        "type": "string"
                                    },
                                    "address": {
                                        "type": "string"
                                    }
                                }
                            }
                        }
                    }
                },
                "required": [
                    "id",
                    "createdDateTime",
                    "lastModifiedDateTime",
                    "changeKey",
                    "originalStartTimeZone",
                    "originalEndTimeZone",
                    "iCalUId",
                    "reminderMinutesBeforeStart",
                    "isReminderOn",
                    "hasAttachments",
                    "subject",
                    "bodyPreview",
                    "importance",
                    "sensitivity",
                    "isAllDay",
                    "isCancelled",
                    "isOrganizer",
                    "responseRequested",
                    "showAs",
                    "type",
                    "webLink",
                    "responseStatus",
                    "body",
                    "start",
                    "end",
                    "location",
                    "recurrence",
                    "attendees",
                    "organizer"
                ]
            }
        }
    }
}
z3019494
Helper I
Helper I

After quickly reading through @mercobenitas ' post, and digging into the Graph Explorer myself, it seems that unlike a calendar that is part of a user's mailbox, a Group Calendar doesn't have another Calendar ID that is separate to its existing Group ID (as there can be multiple calendars per user, but only one calendar per Group)

 

 

Bonus "discovery"/hypothesis about Channel Calendars in Teams

The Teams Channel Calendar implementation seems to be quite odd as well. There doesn't seem to be any property that indicates how Teams filters out non-Channel meetings. The only thing I can find in a joinUrl property which contains the Channel ID (e.g. 

19%3a292d8916972740f595f07915f6a65483%40thread.tacv2

z3019494_0-1696662456472.png

 

If you created an event (i.e. non-Teams meeting) in the Group Calendar using Outlook or Power Automate, the joinUrl property obviously wouldn't exist as it's not an online meeting. My suspicion is that the Channel Calendar somehow reads this joinUrl property, and where the Channel ID corresponds to the current channel's ID, then it'll show it; otherwise it'll not display the meeting.

 

            "onlineMeeting": {
                "joinUrl": "https://teams.microsoft.com/l/meetup-join/19%3afed07587e72c45a78a5f973645f460a4%40thread.tacv2/1696660038405?context=%7b%22Tid%22%3a%2205a0e69a-418a-47c1-9c25-9387261bf991%22%2c%22Oid%22%3a%22c468cfa5-d677-4cc8-a4db-b414b3c95b2b%22%7d",
                "conferenceId": "90107459",
                "tollNumber": "+61 2 8318 0088"
            },

 

Which then explains why it's impossible to create a non-meeting event in a Channel Calendar: it expects the joinUrl property and where an event doesn't contain that property, or the Channel ID buried in that joinUrl isn't the same as the current Channel ID, it'll just ignore the event.

@mercobenitas The question is that when I used this flow, why I got the following error in Apply_to_each loop?

Error: ExpressionEvaluationFailed The execution of template action 'Apply_to_each_1' failed: the result of the evaluation of 'foreach' expression '@body('Parse_JSON')?['value']' is of type 'Null'. The result must be a valid array.
Actually, at the beginning of the loop it will be stopped because of this error!

Helpful resources

Announcements

Calling all User Group Leaders and Super Users! Mark Your Calendars for the next Community Ambassador Call on May 9th!

This month's Community Ambassador call is on May 9th at 9a & 3p PDT. Please keep an eye out in your private messages and Teams channels for your invitation. There are lots of exciting updates coming to the Community, and we have some exclusive opportunities to share with you! As always, we'll also review regular updates for User Groups, Super Users, and share general information about what's going on in the Community.     Be sure to register & we hope to see all of you there!

April 2024 Community Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS   Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!   Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!       Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!   UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!   European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!     Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!     For more events, click the image below to visit the Microsoft Community Days website.      

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

Users online (4,153)