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
Delete a note object. Supports optimistic concurrency control via the If-Match header.
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.ReadWrite | Not available. |
| Delegated (personal Microsoft account) | ShortNotes.ReadWrite | Not available. |
| Application | Not supported. | Not supported. |
HTTP request
DELETE /me/notes/{note-id}
DELETE /users/{id | userPrincipalName}/notes/{note-id}
Request headers
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
| If-Match | The changeKey value for the note is used for optimistic concurrency control. Optional. We recommend that you use this header to avoid conflicts. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 204 No Content response code.
If the If-Match header doesn't match the current changeKey, this method returns a 412 Precondition Failed response code.
Examples
Request
The following example shows a request.
DELETE https://graph.microsoft.com/v1.0/me/notes/AAMkAGI2THVSAAA=
If-Match: "CQAAABYAAABG"
Response
The following example shows the response.
HTTP/1.1 204 No Content