attendanceRecord resource type

Namespace: microsoft.graph

Contains information associated with an attendance record in a meetingAttendanceReport.

Methods

Method Return type Description
List attendanceRecords 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.
role String Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.
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",
  "attendanceIntervals": [
    {
      "@odata.type": "#microsoft.graph.attendanceInterval"
    }
  ],
  "emailAddress": "String",
  "identity": {
    "@odata.type": "#microsoft.graph.identity"
  },
  "role": "String(None|Attendee|Presenter|Organizer)",
  "totalAttendanceInSeconds": "Int32"
}