tab app
6 TopicsGet tab app in a meeting - graph api
Hello, We are developing a tab app that can be used as an in-meeting app in side panel. We would need an api that we could query for information about the tab app in the meeting. Something similar to this api (Get tab in chat): https://learn.microsoft.com/en-us/graph/api/chat-get-tabs?view=graph-rest-1.0&tabs=http We can use "Get tab in chat api" for apps in meeting as well, but we cannot retrieve information about tab app in meeting when chat is turned off for given meeting. My question is - are there any future plans to include such meeting apis in the Graph api? Or is there any other way how to get this piece of information? (other than the teams-js SDK - we need to query the data in backend)1KViews1like2CommentsTeams Meeting Extension - Side Panel App - How to get attendees emails list
Hi Community, We are developing a Microsoft Teams meeting extension. In order to embedded details related to our system info, we need to get the emails list of attendees of the specific meeting. Tried many ways including graph API but it couldn't identify the meeting ID returning from the teams SDK microsoftTeams.getContext((context) => { const meetingID = context.meetingId; }) This returned a meeting id which a format of MCMxOTptZWV0aW5nX01UbG1Zams0WW1ZdFpESXdaUzAwWmpFeUxUbGhaVGd0TW1Ga01XVTVPV05sTnpGaUB0aHJlYWQudjIjMA== but it does not identify by graph API Also, we tried microsoftTeams.meeting.getMeetingDetails((context) => { console.log(context) }) this method returns errorCode: 1000, message: "App doesn't have sufficient permission to use this API" Is there any simple way to get a meeting attendees list from teams meeting optimized tab apps? or is this feature not yet released to third-party developers?Solved4.9KViews1like8Comments