| title | changeNotificationCollection resource type |
|---|---|
| description | Represents a collection of subscription notifications sent to the subscriber. |
| ms.localizationpriority | medium |
| author | jessieli-ad |
| doc_type | resourcePageType |
| ms.subservice | change-notifications |
| ms.date | 07/22/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents a collection of resource change notifications sent to the subscriber and includes the validation tokens for the notifications for rich notifications (notifications with resource data).
For details, see Use Microsoft Graph to get change notifications.
None.
| 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. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.changeNotificationCollection",
"validationTokens": [
"String"
],
"value": [
{
"@odata.type": "microsoft.graph.changeNotification"
}
]
}