meetingAttendanceReport resource type

Namespace: microsoft.graph

Contains information associated with a meeting attendance report.

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"}]
}