Create authoredNote

Namespace: microsoft.graph

Create a new authoredNote object.

This API is available in the following national cloud deployments.

Global service US Government L4 US Government L5 (DOD) China operated by 21Vianet

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) SubjectRightsRequest.ReadWrite.All Not available.
Delegated (personal Microsoft account) Not supported. Not supported.
Application Not supported. Not supported.

HTTP request

Caution

The subject rights request API under the /privacy node is deprecated and will stop returning data on March 30, 2025. Please use the new path under /security.

POST /security/subjectRightsRequests/{subjectRightsRequestId}/notes
POST /privacy/subjectRightsRequests/{subjectRightsRequestId}/notes

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type application/json. Required.

Request body

In the request body, supply a JSON representation of the authoredNote object.

The following table lists the properties that are required when you create the authoredNote.

Property Type Description
content microsoft.graph.itemBody The note content for the request.

Response

If successful, this method returns a 201 Created response code and an authoredNote object in the response body.

Examples

Request

The following example shows a request.

POST https://graph.microsoft.com/v1.0/privacy/subjectRightsRequests/{subjectRightsRequestId}/notes
Content-Type: application/json

{
  "content": {
    "content": "Please take a look at the files tagged with follow up",
    "contentType": "text"
  }
}

Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 201 Created
Content-Type: application/json

{
  "id": "D450C4F9-CC18-4784-9406-9372F4E05F7B",
  "createdDateTime": "2022-05-10T22:42:28Z",
  "author": {
    "user": {
      "id": "1B761ED2-AA7E-4D82-9CF5-C09D737B6167",
      "displayName": "srradmin@contoso.com"
    }
  },
  "content": {
    "content": "Please take a look at the files tagged with follow up",
    "contentType": "text"
  }
}