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:-

then using the 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