spo site apppermission set¶
Updates a specific application permission for a site
Usage¶
m365 spo site apppermission set [options]
Options¶
-u, --siteUrl <siteUrl>
- URL of the site collection where the permission to retrieve is located
-i, --permissionId [permissionId]
- ID of the permission to update. Specify
permissionId
,appId
orappDisplayName
--appId [appId]
- Client ID of the Azure AD app for which to update permissions. Specify
permissionId
,appId
orappDisplayName
-n, --appDisplayName [appDisplayName]
- Display name of the Azure AD app for which to update permissions. Specify
permissionId
,appId
orappDisplayName
-p, --permission <permission>
- Permission to site (
read
,write
,read,write
). If multiple permissions have to be granted, they have to be comma separated ex.read,write
-h, --help
- output usage information
--query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text,csv
. Defaultjson
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Examples¶
Updates a specific application permission to read for the https://contoso.sharepoint.com/sites/project-x site collection with permission id aTowaS50fG1zLnNwLmV4dHw4OWVhNWM5NC03NzM2LTRlMjUtOTVhZC0zZmE5NWY2MmI2NmVAZGUzNDhiYzctMWFlYi00NDA2LThjYjMtOTdkYjAyMWNhZGI0
m365 spo site apppermission set --siteUrl https://contoso.sharepoint.com/sites/project-x --permissionId aTowaS50fG1zLnNwLmV4dHw4OWVhNWM5NC03NzM2LTRlMjUtOTVhZC0zZmE5NWY2MmI2NmVAZGUzNDhiYzctMWFlYi00NDA2LThjYjMtOTdkYjAyMWNhZGI0 --permission read
Updates a specific application permission to read for the https://contoso.sharepoint.com/sites/project-x site collection with an application called Foo
m365 spo site apppermission set --siteUrl https://contoso.sharepoint.com/sites/project-x --appDisplayName Foo --permission read
Updates a specific application permission to read for the https://contoso.sharepoint.com/sites/project-x site collection with an application id 89ea5c94-7736-4e25-95ad-3fa95f62b66e
m365 spo site apppermission set --siteUrl https://contoso.sharepoint.com/sites/project-x --appId 89ea5c94-7736-4e25-95ad-3fa95f62b66e --permission read