Ability to automatically record the online meeting and get attendance.

Pawan Bhatta 65 Reputation points
2023-09-01T14:17:26.65+00:00

I was able to create a online meeting through calendar events using endpoint: https://graph.microsoft.com/v1.0/users/${email}/calendar/events by setting isOnlineMeeting to true.

My Questions are:

Can i also set a flag to auto record the meeting? Is there a way by which i can configure the meeting to automatically be recorded?

Can i get the attendance of the meeting at the time the online meeting is happening or after it has finished?

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

Accepted answer
  1. msft-gu 1,355 Reputation points
    2023-09-01T21:42:43.14+00:00

    Hello Pawan,

    Thank you for your question.

    • For the autorecord, you need to specify in the body: "recordAutomatically":true

    Reference: recordAutomatically Boolean Indicates whether to record the meeting automatically.

    https://learn.microsoft.com/en-us/graph/api/resources/onlinemeeting?view=graph-rest-1.0

    • For the attendance, it will be after the meeting.

    Get the meetingAttendanceReport for an onlineMeeting. Each time an online meeting ends, an attendance report will be generated for that session.

    Reference: Get meetingAttendancereport

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


    If I answered your question, please upvote and accept it as an answer.


0 additional answers

Sort by: Most helpful

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.