Hi All,
I'm trying to get the busy rooms for the reccurring meetings by using FindMeetingTimesV2 connector. I could see that availability as "free" for the available rooms. But i could not see the busy rooms instead could see that OrganizerUnavailable
PFB code and guide me if i made any mistakes. Please let me know if you need more details.
Clear(ConflictsRooms);
ForAll(
mergedData,
Collect(
ConflictsRooms,
Office365Outlook.FindMeetingTimesV2(
{
RequiredAttendees: "SingleRoom",
IsOrganizerOptional: true,
Start: DateTimeValue(UTCStartDateTime), // Ex: 12/10/2020
End: DateTimeValue(UTCEndDateTimeRecurr), // Ex: 12/15/2020
MeetingDuration:60,
MinimumAttendeePercentage: "1",
ActivityDomain: "Unrestricted"
}
)
)
);

Report
All responses (
Answers (