how I get the correct Meeting ID to pass to the GET OnlineMeetings API

ajay sahare 21 Reputation points
2022-05-27T13:15:52.453+00:00

Hi I want to get online meetings data as per documentation when GET /me/onlineMeetings/

206147-capture.png

and when I hit end point GET /me/onlineMeetings?$filter=JoinWebUrl%20eq%20'{joinWebUrl}'

206196-capture1.png

then I get meeting Id

but problem is that I am enter joinWebUrl manually from team ui you can see in image in below

206244-capture2.png

how i get correct meeting ID without entering joinWebUrl in filter options

beause I want fetch all student all meeting attedndence data automatically

how i do that ??

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
10,743 questions
0 comments No comments
{count} votes

Accepted answer
  1. ShivaniRai-MSFT 2,726 Reputation points
    2022-05-27T14:36:31.997+00:00

    Hi @ajay sahare ,

    According to this documentation, this Graph API POST https://graph.microsoft.com/v1.0/me/onlineMeetings is used to create an online meeting.

    There are 2 ways to get the meeting information:

    • GET /communications/onlineMeetings/?$filter=VideoTeleconferenceId%20eq%20'{videoTeleconferenceId}'
    • GET /me/onlineMeetings?$filter=JoinWebUrl%20eq%20'{joinWebUrl}'

    So to get the meeting Id we have to use the above two methods only.

    Also, if you do not want to copy the joinWebUrl from the UI then you can use this event API GET https://graph.microsoft.com/v1.0/me/events to get the joinWebUrl property. Refer below example screenshot from Graph Explorer:

    206281-image.png

    Reference Document: https://learn.microsoft.com/en-us/graph/api/user-list-events?view=graph-rest-1.0&tabs=http

    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.

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. 2023-02-07T13:03:37.55+00:00

    Hi @ShivaniRai-MSFT ,
    i need to get the Online meeting details.

    my doubt is which artifact we need to grant access and get the online meetings and attendance related API.

    like (Calendars.Read)

    thanks

    0 comments No comments