Edit

Share via


attendanceRecord resource type

Namespace: microsoft.graph

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.
externalRegistrationInformation virtualEventExternalRegistrationInformation The external information for a virtualEventRegistration.
identity identity The identity of the user associated with this attendance record. The specific type is one of the following derived types of identity, depending on the user type: communicationsUserIdentity, azureCommunicationServicesUserIdentity.
registrationId String Unique identifier of a virtualEventRegistration that is available to all participants registered for the virtualEventWebinar.
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 JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.attendanceRecord",
  "attendanceIntervals": [{"@odata.type": "#microsoft.graph.attendanceInterval"}],
  "emailAddress": "String",
  "externalRegistrationInformation": {"@odata.type": "#microsoft.graph.virtualEventExternalRegistrationInformation"},
  "identity": {"@odata.type": "#microsoft.graph.identity"},
  "registrationId": "String",
  "role": "String",
  "totalAttendanceInSeconds": "Int32"
}