Hi All
im having an issue with a formula which is onselect button for sending an online meeting request to multiple email addresses.
The error keeps saying
the method Createteamsmeeting has invalid value for parameter 'calendarid'
The formula is based on one of Shane Youngs video's ((Here)
Set(varShowSpinner,true);
Set(varMeeting,
MicrosoftTeams.CreateTeamsMeeting(
LookUp(Office365Outlook.CalendarGetTablesV2().value, DisplayName = "Calendar").name,
ses_name.Text,
{content: body.HtmlText, contentType: "html"},
Dropdown2.Selected.Value,
{dateTime: DateTimeValue(ses_time.Text)},
{dateTime: DateAdd(DateTimeValue(ses_time.Text),Value(min_dur.Text),Minutes)},
true,
"teamsforbusiness",
{
requiredAttendees: Concat(Gallery2.AllItems, attendee.Email, "; ")}
));
Set(varShowSpinner,false);
Any help i would be grateful 🙂
Gary 🙂
ps i have tested the teams meeting calendar by using power automate create teams meeting on button and even looking at the peekcode it states "Calendar" is the parameter (Confused) 😞