spo web roleassignment add
Adds a role assignment to web permissions.
Usage
m365 spo web roleassignment add [options]
Options
-u, --webUrl <webUrl>URL of the site.
--principalId [principalId]SharePoint ID of principal it may be either user id or group id we want to add permissions to. Specify either
principalId,upn,groupName,entraGroupIdorentraGroupNamebut not multiple.--upn [upn]The upn/email of user to assign role to. Specify either
principalId,upn,groupName,entraGroupIdorentraGroupNamebut not multiple.--groupName [groupName]The group name of the SharePoint group. Use this option exclusively for SharePoint Online groups. Specify either
principalId,upn,groupName,entraGroupIdorentraGroupNamebut not multiple.--entraGroupId [entraGroupId]ID of the Microsoft Entra group to add. Specify either
principalId,upn,groupName,entraGroupIdorentraGroupNamebut not multiple.--entraGroupName [entraGroupName]Display name of the Microsoft Entra group to add. Specify either
principalId,upn,groupName,entraGroupIdorentraGroupNamebut not multiple.--roleDefinitionId [roleDefinitionId]ID of role definition. Specify either
roleDefinitionIdorroleDefinitionNamebut not both.--roleDefinitionName [roleDefinitionName]The name of a role definition, like 'Contribute', 'Read', etc. Specify either
roleDefinitionIdorroleDefinitionNamebut not both.
-h, --help [help]Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options,examples,remarks,permissions,response,full. Default isoptions.--query [query]JMESPath query string. See http://jmespath.org/ for more information and examples.
-o, --output [output]Output type.
json,text,csv,md,none. Defaultjson.--verboseRuns command with verbose logging.
--debugRuns command with debug logging.
Examples
add role assignment to a site principal id 11 and role definition id 1073741829
m365 spo web roleassignment add --webUrl "https://contoso.sharepoint.com/sites/project-x" --principalId 11 --roleDefinitionId 1073741829
add role assignment to a site for a upn and role definition id 1073741829
m365 spo web roleassignment add --webUrl "https://contoso.sharepoint.com/sites/project-x" --upn "someaccount@tenant.onmicrosoft.com" --roleDefinitionId 1073741829
add role assignment to a site for group someGroup and role definition id 1073741829
m365 spo web roleassignment add --webUrl "https://contoso.sharepoint.com/sites/project-x" --groupName "someGroup" --roleDefinitionId 1073741829
add role assignment to a site for principal id 11 and role definition name Full Control
m365 spo web roleassignment add --webUrl "https://contoso.sharepoint.com/sites/project-x" --principalId 11 --roleDefinitionName "Full Control"
add role assignment using a Entra Group ID and a role definition
m365 spo web roleassignment add --webUrl "https://contoso.sharepoint.com/sites/project-x" --entraGroupId "27ae47f1-48f1-46f3-980b-d3c1470e398d" --roleDefinitionId 1073741829
Response
The command won't return a response on success.