all users Meeting show main admin dashboard through api

Sandeep Singh 0 Reputation points
2024-10-10T10:41:33.25+00:00

Main admin wants to see all users meeting display, through which API is it and what field is required, all user's meeting data should be shown in admin dashboard. through code api.

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

1 answer

Sort by: Most helpful
  1. Yakun Huang-MSFT 4,800 Reputation points Microsoft Vendor
    2024-10-11T01:58:19.08+00:00

    Hi @Calvin Jouard

    You can use the /events endpoint to get all events. Events with isOnlineMeeting set to true are onlineMeeting.

    All events with isOnlineMeeting value true can be filtered through $filter, but unfortunately, this property does not support filtering, so you can only get all the events first, and then loop through all the events in your code to filter out onlineMeeting.

    GET /users/{id | userPrincipalName}/events
    

    See this link for details on listing all events:

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

    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.

    0 comments No comments

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.