Edit

Create permission on a list

Namespace: microsoft.graph

Create a new permission object on a list.

Note: You can only use this method to create a new application permission; you can't use it to create a new list permission for a user.

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 permission Higher privileged permissions
Delegated (work or school account) Sites.ReadWrite.All Sites.FullControl.All, Sites.Manage.All
Delegated (personal Microsoft account) Not supported. Not supported.
Application Sites.ReadWrite.All Sites.FullControl.All, Sites.Manage.All

HTTP request

POST /sites/{site-id}/lists/{list-id}/permissions

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 permission object.

Response

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

Examples

Request

The following example shows a request.

POST https://graph.microsoft.com/v1.0/sites/contoso.sharepoint.com,48f1898f-77d9-4a1b-bddc-1f49bb6dc134,7206fc09-e4af-48b3-8730-ed7321396d7a/lists/44ca0d29-33d3-47c9-8f12-eb0c46e3c7ad/permissions
Content-Type: application/json

{
  "grantedToV2": {
    "application": {
      "id": "89ea5c94-7736-4e25-95ad-3fa95f62b66e",
      "displayName": "Contoso Time Manager App"
    }
  },
  "roles": ["write"]
}

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

{
  "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#sites('contoso.sharepoint.com%2C48f1898f-77d9-4a1b-bddc-1f49bb6dc134%2C7206fc09-e4af-48b3-8730-ed7321396d7a')/lists('44ca0d29-33d3-47c9-8f12-eb0c46e3c7ad')/permissions/$entity",
  "id": "2",
  "roles": ["write"],
  "grantedToV2": {
    "application": {
      "id": "89ea5c94-7736-4e25-95ad-3fa95f62b66e",
      "displayName": "Contoso Time Manager App"
    }
  }
}