How to fetch meeting ID from meeting link or given meeting ID from the calendar?

Kripa 140 Reputation points
2024-11-01T05:20:20.8233333+00:00

Ref link:https://learn.microsoft.com/en-us/microsoftteams/platform/graph-api/meeting-transcripts/fetch-id

I am trying to get Meeting ID for to fetch transcript.So,i am trying in Graph Explorer using below URLs and i have tried via coding also.

For to get Transcript using this API Url:

GET /users('{userId}')/onlineMeetings('{meetingId}')/transcripts

So, to get alpanumeric unique meeting ID Firstly i need to fetch meeting ID.

First with Meeting Link:

User's image

Second with Meeting ID given in Teams Calendar:

User's image

My aim is to get transcript for all the people in my organization ,So according to that i have given permission to my tenant app all the required Graph API permission.

User's image So,what i am lacking or which step i missed assist me please.

Noted: Now i am tested with daily occuring meeting in which participation is also there for whom i am using tenant ID,and i have tried with single day meeting also still facing same error.

Please assist me ASAP!!!

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
13,414 questions
Microsoft Teams Development
Microsoft Teams Development
Microsoft Teams: A Microsoft customizable chat-based workspace.Development: The process of researching, productizing, and refining new or existing technologies.
3,753 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. CarlZhao-MSFT 46,306 Reputation points
    2024-11-01T06:24:34.6666667+00:00

    Hi @Kripa

    If you are not the organizer or attendee of the target meeting, then you will not be able to access the meeting. Currently, only the organizer or attendee of the meeting is supported to access the target meeting.

    In addition, if you are getting the meeting information joined by other users, the target user must also be the organizer or attendee of the meeting, otherwise the access will be blocked.

    By the way, do not call GET /users/{userId}/onlineMeetings?$filter=JoinWebUrl%20eq%20'{joinWebUrl}' API in Graph Explorer, because this endpoint is only available for application permissions, you should request an access token using the client credentials flow in Postman and test.

    Hope this helps.

    If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.


  2. Hitesh Pachipulusu - MSFT 3,620 Reputation points Microsoft External Staff
    2024-11-01T08:08:59.7366667+00:00

    Hello Kripa,

    Thank you for reaching out to Microsoft Support!

    From the screenshots, it appears you are using Graph Explorer to fetch the online meeting ID of another user.

    As Carl mentioned, to retrieve the online meeting object of another user, you need to use application permissions. Unfortunately, Graph Explorer only supports delegated permissions, which means you can only fetch details for the signed-in user.

    Hope this helps.

    If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.