Skip to content

Latest commit

 

History

History
70 lines (52 loc) · 3.31 KB

File metadata and controls

70 lines (52 loc) · 3.31 KB
title meetingAttendanceReport resource type
description Contains information associated with a meeting attendance report.
author awang119
ms.localizationpriority medium
ms.subservice cloud-communications
doc_type resourcePageType
ms.date 07/22/2024

meetingAttendanceReport resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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.

The policies that apply to the Teams attendance report also extend to Microsoft Graph, which means the same rules and retention periods, including a one-year retention policy from the meeting date, apply to the meetingAttendanceReport scenarios.

Methods

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

Properties

Property Type Description
externalEventInformation virtualEventExternalInformation collection The external information of a virtual event. Returned only for event organizers or coorganizers. Read-only.
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 JSON representation shows the resource type.

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

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