Redigera

Dela via


attendanceRecord 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 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.
totalAttendanceInSeconds Int32 Total duration of the attendances in seconds.

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