Forum Discussion
Getting “Meeting Id is corrupted” error while trying to fetch meeting details from Graph API
pksukeshpk - this API call will provide you the joinWebUrl in the response. You would get the {chat-id} for this from a call into Teams Client SDK.
Get chat - Microsoft Graph v1.0 | Microsoft Learn
Okay. That I know. But in our case, we are not using the mentioned create online meeting API for creating the meeting. We are creating the meeting directly from the calendar, and then the organizer and attendee are joining by clicking the link from the Outlook calendar.
We are creating an app that can be added to any scheduled meeting while the meeting is on. We aren't creating any meeting
- Prasad_Das-MSFTJun 13, 2024
Microsoft
You would get the {chat-id} by making a call into Teams Client SDK. Use that {chat-id} to run below API:
Get chat - Microsoft Graph v1.0 | Microsoft Learnthis API call will provide you the joinWebUrl in the response.Thereafter use the following request to get the OnlineMeeting resource:
GET /users/{userId}/onlineMeetings?$filter=joinWebUrl eq '{joinWebUrl}'