meetingAttendanceReport resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Contains information associated with a meeting attendance report for an onlineMeeting or a virtualEvent.

Meeting attendance reports are online meeting artifacts. For details, see Online meeting artifacts and permissions.

Methods

Method Return type Description
List meetingAttendanceReports meetingAttendanceReport collection Get a list of meetingAttendanceReport objects and their properties.
Get meetingAttendanceReport meetingAttendanceReport Read the properties and relationships of a meetingAttendanceReport object.

Properties

Property Type Description
id String Unique identifier for the attendance report. Read-only.
meetingEndDateTime DateTimeOffset UTC time when the meeting ended. Read-only.
meetingStartDateTime DateTimeOffset UTC time when the meeting started. Read-only.
totalParticipantCount Int32 Total number of participants. Read-only.

Relationships

Relationship Type Description
attendanceRecords attendanceRecord collection List of attendance records of an attendance report. Read-only.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.meetingAttendanceReport",
  "id": "String(identifier)",
  "meetingEndDateTime": "String (timestamp)",
  "meetingStartDateTime": "String (timestamp)",
  "totalParticipantCount": "Int32",

  "attendanceRecords": [{"@odata.type": "#microsoft.graph.attendanceRecord"}]
}