I want to create a gallery of all required invitees and their response (Accepted, Tentative, Declined) to an Office 365 Calendar invitation. I'm able to get the invites and other meeting information, but I am unable to figure out how to get their status.
I have connected and configured Office365Users and Office365Outlook connectors.
From other posts:
Get list of calendars: (Note the use if the current APIs CalendarGetTablesV2 and GetEventsCalendarViewV3 - FYI: watch out for the case change in the attributes from previous API versions)
Set(MyCalendarID, LookUp(Office365Outlook.CalendarGetTablesV2().value,name = "MyCalendarName").id);
Set(UTCNow,Text(DateAdd(Now(),0,TimeUnit.Minutes),DateTimeFormat.UTC));
Set(UTCNext,Text(DateAdd(Now(),44640,TimeUnit.Minutes),DateTimeFormat.UTC));
Set(MyCalendarValues,Office365Outlook.GetEventsCalendarViewV3(MyCalendarID,UTCNow,UTCNext).value)
Setup collections for the meeting lists:
Sort(MyCalendarValues,start)
ThisItem.subject, (etc) for gallery.
Setup Collection for Required Users to display in a 2nd gallery:
ClearCollect(RequiredAttendance,Split(ThisItem.requiredAttendees,";"))
Get User's name to display in the gallery:
First(Office365Users.SearchUserV2({searchTerm: ThisItem.Value ,top: 1}).value).DisplayName
But I can't find (google) how to also display the user's response to the invite (Accepted, Declined or Tentative).
As always, thank you for your time.
Alex