changeNotificationCollection resource type

Namespace: microsoft.graph

Represents a collection of resource change notifications sent to the subscriber.

For details, see Use Microsoft Graph to get change notifications.

Methods

None.

Properties

Property Type Description
validationTokens String collection Contains an array of JSON web tokens (JWT) generated by Microsoft Graph for the application to validate the origin of the notifications. Microsoft Graph generates a single token for each distinct app and tenant pair for an item if it exists in the value array. Keep in mind that notifications can contain a mix of items for various apps and tenants that subscribed using the same notification URL. Only provided for change notifications with resource data. Optional.
value changeNotification collection The set of notifications being sent to the notification URL. Required.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.changeNotificationCollection",
  "validationTokens": [
    "String"
  ],
  "value": [
    {
      "@odata.type": "microsoft.graph.changeNotification"
    }
  ]
}