Skip to content

Latest commit

 

History

History
74 lines (56 loc) · 2.23 KB

File metadata and controls

74 lines (56 loc) · 2.23 KB
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

changeNotificationCollection resource type

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.

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"
    }
  ]
}