I have a gallery connected to SharePoint list with all the training events. I have a button "Register" in the gallery and on select of the button am scheduling a Teams meeting with the user who clicked on the button "Register". The problem I have is for every other user, on button click Teams Meeting is Scheduled as a separate meeting. Which means for 5 different users, there are 5 different meetings scheduled. I do not want that. I want one single meeting where those 5 users should be attendees of the meeting. Here is my gallery and code of OnSelect of button Register. How can I make one training event scheduled for each gallery item and have attendees of that event who registers for that particular event.

Set(
varPatchSuccess,
Patch(
'SLD Form',
Gallery1.Selected,
{
TargetAudience: Concatenate(
Gallery1.Selected.TargetAudience,
";",
varUserEmail
)
}
)
);
If(
!IsBlank(varPatchSuccess) && !IsBlank(ThisItem.Schedule),
MicrosoftTeams.CreateTeamsMeeting(
LookUp(
Office365Outlook.CalendarGetTables().value,
DisplayName = "Calendar"
).Name,
"SLD Session - " & ThisItem.TopicName,
{
content: "",
contentType: "html"
},
"India Standard Time",
{dateTime: ThisItem.Schedule},
{
dateTime: DateAdd(
ThisItem.Schedule,
60,
Minutes
)
},
true,
"teamsForBusiness"
)
);
Thanks.
Ramesh