meetingAttendanceReport resource type
Namespace: microsoft.graph
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.
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 |
---|---|---|
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",
"attendanceRecords": [{"@odata.type": "#microsoft.graph.attendanceRecord"}]
}