Modifica

Delete note

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.

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 ShortNotes.ReadWrite.All Not available.

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/beta/me/notes/AAMkAGI2THVSAAA=
If-Match: "CQAAABYAAABG"

Response

The following example shows the response.

HTTP/1.1 204 No Content