Get the attendees report for a meeting using Graph api will return this error "Meeting Id is corrupted."
Inside Power Apps i am creating a Team meeting using this code/formula:-
Set(
varMeetingDetails,
MicrosoftTeams.CreateTeamsMeeting(
LookUp(Office365Outlook.CalendarGetTablesV2().value,name = "Calendar",id),
"Subject",{content: "Body",contentType: "html"},"Eastern Standard Time",{dateTime: 2022-12-12"
},{dateTime: "2022-12-12" },true,"teamsForBusiness",{requiredAttendees: "*****@outlook.com",
optionalAttendees: "*****@*****.com"
}
)
);
where i will get the meeting ID for the newly created meeting, as follow:-
AAMkAGFkYmYyMzQ5LTc1ODQtNDIxMS1hZWUzLTJhNGUwN2JhODBmOABGAAAAAADGlDZ2FPLOTZLm2m70DlBpBwAFd1s1aHAZRL8xs179m3IiAAAAAAENAAAFd1s1aHAZRL8xs179m3IiAAHs7ROZAAA=
then using this Meeting ID i tried to get the AttendeesReport using the Graph API Explorer, but i got this error:-
Any advice? how i can get the attendees for a meeting ID?
Thanks