I am trying to create a power app and add it to a particular teams meeting. I want that power app to be able to get the meeting title and meeting members list when the meeting starts or when the PowerApp is added to a particular meeting in teams.
I have tried below things but it does not work:
- Teams Context Variable:
Param("userPrincipalName")
Param("meetingTitle")
- Microsoft Teams Integration Object. Usage:
Teams.ThisMeeting
(it has only one property called Id) - Microsoft Teams Connector: Usage:
MicrosoftTeams.<objectName>
(nothing related to current meeting.)
Please help me out with this.
GET https://graph.microsoft.com/v1.0/communications/callRecords/{id}
but it needs the meeting/call Id which I am not able to get from within the meeting. I need my Powerapp to be able to get the meeting information when meeting starts. – Garvit