meetingParticipants 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.

Participants in a meeting.

Properties

Property Type Description
attendees meetingParticipantInfo collection Information of the meeting attendees.
organizer meetingParticipantInfo Information of the meeting organizer.
producers (deprecated) meetingParticipantInfo collection For broadcast meeting only.
contributors (deprecated) meetingParticipantInfo collection For broadcast meeting only.

Caution

The producers and contributors properties are deprecated. All meeting participants are returned in the attendees collection. Use the role property of meetingParticipantInfo to identify the meeting role of the attendee.

JSON representation

The following is a JSON representation of the resource.

{
  "attendees": [{"@odata.type": "#microsoft.graph.meetingParticipantInfo"}],
  "organizer": {"@odata.type": "#microsoft.graph.meetingParticipantInfo"},
}