subscription resource type
Namespace: microsoft.graph
A subscription allows a client app to receive change notifications about changes to data in Microsoft Graph. Currently, subscriptions are enabled for the following resources:
- An alert from the Microsoft Graph Security API.
- A callRecord produced after a call or meeting in Microsoft Teams.
- A chatMessage sent via teams or channels in Microsoft Teams.
- A conversation in a Microsoft 365 group.
- Content in the hierarchy of a root folder driveItem in OneDrive for Business, or of a root folder or subfolder driveItem in a user's personal OneDrive.
- A group in Azure Active Directory.
- A list under a SharePoint site.
- A message, event, or contact in Outlook.
- A printer (when a print job for the printer gets to JobFetchable state - ready to be fetched for printing) and a printTaskDefinition in Universal Print. For more information, see Subscribe to change notifications from cloud printing APIs.
- A user in Azure Active Directory.
For the possible resource path values for each supported resource, see Use the Microsoft Graph API to get change notifications. To learn how to use lifecycle notifications, see Reduce missing subscriptions and change notifications.
Methods
Method | Return Type | Description |
---|---|---|
Create subscription | subscription | Subscribes a listener application to receive change notifications when Microsoft Graph data changes. |
Update subscription | subscription | Renews a subscription by updating its expiration time. |
List subscriptions | subscription | Lists active subscriptions. |
Get subscription | subscription | Reads properties and relationships of subscription object. |
Delete subscription | None | Deletes a subscription object. |
Properties
Property | Type | Description | Supported Resources |
---|---|---|---|
applicationId | String | Optional. Identifier of the application used to create the subscription. Read-only. | All |
changeType | String | Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created , updated , deleted . Multiple values can be combined using a comma-separated list. Note: updated changeType. updated and deleted changeType. |
All |
clientState | String | Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. |
All |
creatorId | String | Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the id of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the id of the service principal corresponding to the app. Read-only. | All |
encryptionCertificate | String | Optional. A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true . |
All |
encryptionCertificateId | String | Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. | All |
expirationDateTime | DateTimeOffset | Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below. | All |
id | String | Optional. Unique identifier for the subscription. Read-only. | All |
includeResourceData | Boolean | Optional. When set to true , change notifications include resource data (such as content of a chat message). |
All |
latestSupportedTlsVersion | String | Optional. Specifies the latest version of Transport Layer Security (TLS) that the notification endpoint, specified by notificationUrl, supports. The possible values are: v1_0 , v1_1 , v1_2 , v1_3 . For subscribers whose notification endpoint supports a version lower than the currently recommended version (TLS 1.2), specifying this property by a set timeline allows them to temporarily use their deprecated version of TLS before completing their upgrade to TLS 1.2. For these subscribers, not setting this property per the timeline would result in subscription operations failing. For subscribers whose notification endpoint already supports TLS 1.2, setting this property is optional. In such cases, Microsoft Graph defaults the property to v1_2 . |
All |
lifecycleNotificationUrl | String | Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. |
All |
notificationQueryOptions | String | Optional. OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc. |
Universal Print Service |
notificationUrl | String | Required. The URL of the endpoint that will receive the change notifications. This URL must make use of the HTTPS protocol. | All |
notificationUrlAppId | String | Optional. The app ID that the subscription service can use to generate the validation token. This allows the client to validate the authenticity of the notification received. | All |
resource | String | Required. Specifies the resource that will be monitored for changes. Do not include the base URL (https://graph.microsoft.com/v1.0/ ). See the possible resource path values for each supported resource. |
All |
Maximum length of subscription per resource type
Resource | Maximum expiration time |
---|---|
Security alert | 43200 minutes (under 30 days) |
Teams callRecord | 4230 minutes (under 3 days) |
Teams chatMessage | 60 minutes (1 hour) |
Group conversation | 4230 minutes (under 3 days) |
OneDrive driveItem | 42300 minutes (under 30 days) |
SharePoint list | 42300 minutes (under 30 days) |
Outlook message, event, contact | 4230 minutes (under 3 days) |
user, group, other directory resources | 41760 minutes (under 29 days) |
presence | 60 minutes (1 hour) |
Print printer | 4230 minutes (under 3 days) |
Print printTaskDefinition | 4230 minutes (under 3 days) |
Note: Existing applications and new applications should not exceed the supported value. In the future, any requests to create or renew a subscription beyond the maximum value will fail.
Relationships
None
JSON representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.subscription",
"id": "String (identifier)",
"resource": "String",
"changeType": "String",
"clientState": "String",
"notificationUrl": "String",
"expirationDateTime": "String (timestamp)",
"applicationId": "String",
"creatorId": "String",
"includeResourceData": "Boolean",
"lifecycleNotificationUrl": "String",
"encryptionCertificate": "String",
"encryptionCertificateId": "String",
"latestSupportedTlsVersion": "String",
"notificationQueryOptions": "String",
"notificationUrlAppId": "String"
}
意見反應
提交並檢視相關的意見反應