Skip to content

Commit ae0c295

Browse files
authored
Apply suggestions from code review
Co-authored-by: MSFT-Andrea <v-andreadr@microsoft.com>
1 parent a08d149 commit ae0c295

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

api-reference/beta/api/note-delta.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ GET /users/{id | userPrincipalName}/notes/delta
4040

4141
## Query parameters
4242

43-
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.
43+
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.
4444

4545
| Query parameter | Type | Description |
4646
|:---|:---|:---|
47-
| $deltatoken | String | A [state token](/graph/delta-query-overview) 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.|
48-
| $skiptoken | String | A [state token](/graph/delta-query-overview) returned in the `@odata.nextLink` URL of the previous **delta** function call, indicating further changes to be tracked. |
47+
| $deltatoken | String | A [state token](/graph/delta-query-overview) 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.|
48+
| $skiptoken | String | A [state token](/graph/delta-query-overview) returned in the **@odata.nextLink** URL of the previous **delta** function call, indicating further changes to be tracked. |
4949

5050
This method also supports the `$select`, `$filter`, `$orderby`, and `$top` OData query parameters to help customize the response.
5151

api-reference/beta/api/note-list-attachments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Namespace: microsoft.graph
1414

1515
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
1616

17-
Get the list of file attachments associated with a [note](../resources/note.md). Only inline image attachments (image/png, image/jpeg, image/gif, image/bmp) are supported, with a maximum size of 3 MB per attachment.
17+
Get the list of file attachments associated with a [note](../resources/note.md). Only inline image attachments (image/png, image/jpeg, image/gif, or image/bmp) are supported, with a maximum size of 3 MB per attachment.
1818

1919
## Permissions
2020

api-reference/beta/api/note-post-attachments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Create attachment"
3-
description: "Add an inline image attachment to a note."
3+
description: "Create a fileAttachment object, which adds an inline image attachment to a note."
44
author: "rajeshvulla"
55
ms.date: 04/07/2026
66
ms.localizationpriority: medium
@@ -14,7 +14,7 @@ Namespace: microsoft.graph
1414

1515
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
1616

17-
Add an inline image attachment to a [note](../resources/note.md). Only image file types (image/png, image/jpeg, image/gif, image/bmp) are supported, with a maximum size of 3 MB per attachment. Use the **contentId** property to reference the attachment in the HTML body of a note by using `<img src="cid:{contentId}" />`.
17+
Create a [fileAttachment](../resources/fileattachment.md) object, which adds an inline image attachment to a [note](../resources/note.md). Only image file types (image/png, image/jpeg, image/gif, or image/bmp) are supported, with a maximum size of 3 MB per attachment. Use the **contentId** property to reference the attachment in the HTML body of a note by using `<img src="cid:{contentId}" />`.
1818

1919
## Permissions
2020

api-reference/beta/api/user-list-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The following properties support `$filter`:
4949
- **lastModifiedDateTime**: `eq`, `ge`, `le`, `gt`, `lt`
5050
- **hasAttachments**: `eq`
5151

52-
The following properties support `$orderby`: **createdDateTime**, **lastModifiedDateTime**, **subject**.
52+
The following properties support `$orderby`: **createdDateTime**, **lastModifiedDateTime**, and **subject**.
5353

5454
## Request headers
5555

api-reference/beta/resources/note.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Inherits from [outlookItem](../resources/outlookitem.md).
3030
|[Delete](../api/note-delete.md)|None|Delete a [note](../resources/note.md) object.|
3131
|[Get delta](../api/note-delta.md)|[note](../resources/note.md) collection|Get a set of [note](../resources/note.md) objects that were added, updated, or deleted in the user's *Notes* folder since the last delta query.|
3232
|[List attachments](../api/note-list-attachments.md)|[attachment](../resources/attachment.md) collection|Get the list of file attachments associated with a [note](../resources/note.md).|
33-
|[Create attachment](../api/note-post-attachments.md)|[attachment](../resources/attachment.md)|Add an inline image attachment to a [note](../resources/note.md).|
33+
|[Create attachment](../api/note-post-attachments.md)|[attachment](../resources/attachment.md)|Create a [fileAttachment](../resources/fileattachment.md) object, which adds an inline image attachment to a [note](../resources/note.md).|
3434
|[Delete attachment](../api/attachment-delete.md)|None|Delete an inline image attachment from a [note](../resources/note.md).|
3535

3636
## Properties
@@ -50,7 +50,7 @@ Inherits from [outlookItem](../resources/outlookitem.md).
5050
## Relationships
5151
|Relationship|Type|Description|
5252
|:---|:---|:---|
53-
|attachments|[attachment](../resources/attachment.md) collection|The file attachments for the note. Only inline image attachments (image/png, image/jpeg, image/gif, image/bmp) are supported, with a maximum size of 3 MB per attachment. Use `$expand` to retrieve attachments.|
53+
|attachments|[attachment](../resources/attachment.md) collection|The file attachments for the note. Only inline image attachments (image/png, image/jpeg, image/gif, or image/bmp) are supported, with a maximum size of 3 MB per attachment. Use `$expand` to retrieve attachments.|
5454
|extensions|[extension](../resources/extension.md) collection|The collection of open extensions defined for the note.|
5555
|multiValueExtendedProperties|[multiValueLegacyExtendedProperty](../resources/multivaluelegacyextendedproperty.md) collection|The collection of multi-value extended properties defined for the note.|
5656
|singleValueExtendedProperties|[singleValueLegacyExtendedProperty](../resources/singlevaluelegacyextendedproperty.md) collection|The collection of single-value extended properties defined for the note.|

concepts/whats-new-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ Added the **deprecationDate** property to the [applicationTemplate](/graph/api/r
6565

6666
Added the **blueprintId** and **source** agent-descriptive properties to [agentRiskDetection](/graph/api/resources/agentriskdetection?view=graph-rest-beta&preserve-view=true) and [riskyAgent](/graph/api/resources/riskyagent?view=graph-rest-beta&preserve-view=true) resources.
6767

68-
### Notes
68+
### Mail
6969

70-
Introduced new notes API that enables users to create and manage simple notes in their *Notes* folder. Notes support text content with optional inline image attachments, and are suitable for quick capture scenarios. Use the [note](/graph/api/resources/note?view=graph-rest-beta&preserve-view=true) resource and the following APIs:
70+
Introduced the new notes API that enables users to create and manage simple notes in their *Notes* folder. Notes support text content with optional inline image attachments, and are suitable for quick capture scenarios. Use the [note](/graph/api/resources/note?view=graph-rest-beta&preserve-view=true) resource and the following APIs:
7171
- [List notes](/graph/api/user-list-notes?view=graph-rest-beta&preserve-view=true) in the user's *Notes* folder.
7272
- [Create a note](/graph/api/user-post-notes?view=graph-rest-beta&preserve-view=true) in the user's *Notes* folder.
7373
- [Get a note](/graph/api/note-get?view=graph-rest-beta&preserve-view=true).

0 commit comments

Comments
 (0)