spo listitem roleassignment remove
Removes a role assignment from a listitem.
Usage
m365 spo listitem roleassignment remove [options]
Options
-u, --webUrl <webUrl>
URL of the site where the list item is located.
-i, --listId [listId]
ID of the list. Specify either
listId
,listTitle
, orlistUrl
but not multiple.-t, --listTitle [listTitle]
Title of the list. Specify either
listId
,listTitle
, orlistUrl
but not multiple.--listUrl [listUrl]
Relative URL of the list. Specify either
listId
,listTitle
, orlistUrl
but not multiple.--listItemId <listItemId>
Id of the list item to remove the role from.
--principalId [principalId]
SharePoint ID of principal it may be either user id or group id we want to remove permissions. Specify either
principalId
,upn
, orgroupName
but not multiple.--upn [upn]
The upn/email of user. Specify either
principalId
,upn
, orgroupName
but not multiple.--groupName [groupName]
The group name of the SharePoint group Specify either
principalId
,upn
, orgroupName
but not multiple.-f, --force
Don't prompt for confirming removing the role assignment.
-h, --help [help]
Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options
,examples
,remarks
,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
.--verbose
Runs command with verbose logging.
--debug
Runs command with debug logging.
Examples
Remove roleassignment from list item getting list by title based on group name
m365 spo listitem roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --listTitle "someList" --listItemId 1 --groupName "saleGroup"
Remove roleassignment from list item getting list by title based on principal Id
m365 spo listitem roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --listTitle "Events" --listItemId 1 --principalId 2
Remove roleassignment from list item getting list by url based on principal Id
m365 spo listitem roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --listUrl '/sites/contoso-sales/lists/Events' --listItemId 1 --principalId 2
Remove roleassignment from list item getting list by url based on principal Id without prompting for confirmation
m365 spo listitem roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --listUrl '/sites/contoso-sales/lists/Events' --listItemId 1 --principalId 2 --force
Response
The command won't return a response on success.