Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
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.
Get a set of note objects that were added, updated, or deleted in the user's Notes folder since the last delta query. A delta function call for notes is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the notes.
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
| Permission type | Least privileged permissions | Higher privileged permissions |
|---|---|---|
| Delegated (work or school account) | ShortNotes.Read | ShortNotes.ReadWrite |
| Delegated (personal Microsoft account) | ShortNotes.Read | ShortNotes.ReadWrite |
| Application | ShortNotes.Read.All | ShortNotes.ReadWrite.All |
HTTP request
GET /me/notes/delta
GET /users/{id | userPrincipalName}/notes/delta
Query parameters
Tracking changes in notes incurs a round of one or more delta function calls. If you use any query parameter (other than $deltatoken and $skiptoken), you must specify it in the initial delta request. Microsoft Graph automatically encodes any specified parameters into the token portion of the @odata.nextLink or @odata.deltaLink URL provided in the response.
| Query parameter | Type | Description |
|---|---|---|
| $deltatoken | String | A state token returned in the @odata.deltaLink URL of the previous delta function call, indicating the completion of that round of change tracking. Save and apply the entire @odata.deltaLink URL, including this token, in the first request of the next round of change tracking for that collection. |
| $skiptoken | String | A state token returned in the @odata.nextLink URL of the previous delta function call, indicating further changes to be tracked. |
This method also supports the $select, $filter, $orderby, and $top OData query parameters to help customize the response.
Request headers
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK response code and a collection of note objects in the response body. The response also includes an @odata.nextLink URL or an @odata.deltaLink URL.
- If an @odata.nextLink URL is returned, more pages of data remain to be retrieved. The application continues making requests using the @odata.nextLink URL until an @odata.deltaLink URL is included in the response.
- If an @odata.deltaLink URL is returned, no more pages of data remain to be returned. Save the @odata.deltaLink URL for use in the next delta call.
Examples
Example 1: Initial sync request
The following example shows the initial sync request to get all notes.
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/me/notes/delta
Response
The following example shows the response.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#users('user-id')/notes",
"@odata.deltaLink": "https://graph.microsoft.com/beta/me/notes/delta?$deltatoken=abc123def456",
"value": [
{
"id": "AAMkAGI2THVSAAA=",
"changeKey": "CQAAABYAAABE",
"createdDateTime": "2024-01-15T10:00:00Z",
"lastModifiedDateTime": "2024-01-20T11:00:00Z",
"categories": [],
"subject": "Updated Note",
"body": {
"contentType": "html",
"content": "<html><body>Updated content</body></html>"
},
"bodyPreview": "Updated content",
"isDeleted": false,
"hasAttachments": false
}
]
}
Example 2: Subsequent delta request
The following example shows a subsequent sync request using the delta token from the previous response. New, updated, and deleted notes are returned.
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/me/notes/delta?$deltatoken=abc123def456
Response
The following example shows the response.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#users('user-id')/notes",
"@odata.deltaLink": "https://graph.microsoft.com/beta/me/notes/delta?$deltatoken=xyz789new",
"value": [
{
"id": "AAMkAGI2NEWITEM=",
"changeKey": "CQAAABYAAABF",
"subject": "New Note",
"bodyPreview": "New content",
"createdDateTime": "2024-01-21T08:00:00Z",
"lastModifiedDateTime": "2024-01-21T08:00:00Z"
},
{
"@removed": {
"reason": "deleted"
},
"id": "AAMkAGI2DELETED="
}
]
}