ClearCollect(
arrTimes,
AddColumns(
Office365Outlook.FindMeetingTimesV2(
{
MaxCandidates: 48,
MinimumAttendeePercentage: 1,
MeetingDuration: ComboboxCanvas1.Selected.Value,//combo box with the time of meeting in minutes
Start: DateAdd(DatePickerCanvas1.SelectedDate,0,TimeUnit.Hours), //start date of meeting
End: DateAdd(DatePickerCanvas1.SelectedDate+1,0,TimeUnit.Days), //end date of meeting
RequiredAttendees: Concatenate(User().Email,";","johndoe@contoso.com"), //emails from attendees
ActivityDomain:"Work"
}
).meetingTimeSuggestions,
StartTime,meetingTimeSlot.start.dateTime,
EndTime,meetingTimeSlot.end.dateTime
)
);
3º step: add a gallery in your app and set the items property to array that you just created: arrTimes (or whatever the name you give to it)