Outlook - Extract all meeting links from calendar

Hello community,

I’m currently working in UiPath StudioX and have encountered a challenge that I believe some of you might have insights on. I’m attempting to retrieve all meeting links using the Table Extraction activity, but unfortunately, I’m facing difficulties in making it work.

If anyone has experience or suggestions related to this issue, I would greatly appreciate your guidance. Your expertise could be precious in helping me overcome this obstacle. Feel free to share your thoughts or solutions, and let’s collaborate to find a resolution together.

Attached below is the screenshot of the problem.

Thank you in advance for your support!

@Muhammad_Anas_Baloch

If you have office 365 then you can use the following to get all details

Cheers

@Anil_G

Thanks for the response. From the calendar invitees, I want to extract all those attendees who haven’t responded to the invite. So I believe the above shared thing will not work for me.

@Muhammad_Anas_Baloch

The initial ask was to get the meeting links…so suggested accordingly

If you need to get the attendies who accepted you can use this in the for each events list

CurrentEvent.Attendees.Where(Function(a) a.Status = Uipath.MicrosoftOffice365.Calendar.Models.EventAttendeeStatus.Accepted)

this would give list of attendies who accepted

Hope this helps

Cheers