@RandyHayes Sorry about that, i did not provide any data due to i have been testing multiple ways of trying it but here is one.
Set(StartDateTimeUTC, Now());
ClearCollect(AvailableRooms, Office365Outlook.FindMeetingTimesV2({RequiredAttendees: DropdownSelectRoom.Selected.Address, IsOrganizerOptional: true, Start: StartDateTimeUTC,
ActivityDomain: "Unrestricted"}));
ClearCollect(AvailableRoomsSorted, SortByColumns(First(AvailableRooms).meetingTimeSuggestions, "confidence", Descending));
Then in my gallery i set Items to: AvailableRooms
ThisItem.Email to display the rooms email.
First(First(First(AvailableRooms).meetingTimeSuggestions).attendeeAvailability).availability
To display the rooms free/busy status
But i can't get it to work as i always seems to get the rooms is free even if i book it.