Skip to content

Latest commit

 

History

History
66 lines (54 loc) · 2.83 KB

File metadata and controls

66 lines (54 loc) · 2.83 KB
title description author ms.localizationpriority ms.subservice doc_type
attendanceRecord resource type
Contains information associated with an attendance record in a meetingAttendanceReport.
awang119
medium
cloud-communications
resourcePageType

attendanceRecord resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Contains information associated with an attendance record in a meetingAttendanceReport.

Methods

Method Return type Description
List attendanceRecord collection Get a list of attendanceRecord objects and their properties.

Properties

Property Type Description
attendanceIntervals attendanceInterval collection List of time periods between joining and leaving a meeting.
emailAddress String Email address of the user associated with this attendance record.
identity identity Identity of the user associated with this attendance record. The specific type will be one of the following derived types of identity, depending on the type of the user: communicationsUserIdentity, azureCommunicationServicesUserIdentity.
role String Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.
registrantId String Unique identifier of a meetingRegistrant. Presents when the participant has registered for the meeting. (deprecated)
totalAttendanceInSeconds Int32 Total duration of the attendances in seconds.

Tip

The registrantId property is deprecated and will stop returning data on December 31, 2024. There will be a new property replacing this by the end of 2024. For more information, see Deprecation of the Microsoft Graph meeting registration beta APIs.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.attendanceRecord",
  "emailAddress": "String",
  "totalAttendanceInSeconds": "Int32",
  "role": "String(None|Attendee|Presenter|Organizer)",
  "registrantId": "String",
  "identity": {
    "@odata.type": "#microsoft.graph.identity"
  },
  "attendanceIntervals": [
    {
      "@odata.type": "#microsoft.graph.attendanceInterval"
    }
  ]
}