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

Represents a notification for the creation, update, or deletion of a participant in a meeting. This resource is published by communications servers as a notification of participant changes since the last update.

Properties

Property Type Description
participants participant collection The collection of participants that were updated since the last roster update.
sequenceNumber Int64 The sequence number for the roster update that is used to identify the notification order.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.deltaParticipants",
  "participants": [{"@odata.type": "#microsoft.graph.participant"}],
  "sequenceNumber": "Int64"
}