changeNotificationCollection 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 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 JWT tokens 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 JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.changeNotificationCollection",
"validationTokens": [
"String"
],
"value": [
{
"@odata.type": "microsoft.graph.changeNotification"
}
]
}