Questions tagged [role-assignment]
The role assignment is the relationship among the role definition, the users and groups, and the scope (for example, one user may be a reader on list one, while another user is a reader on list two).
22 questions
0 votes
1 answer
133 views
Determine programatically whether user has been granted EDIT access to a library item
I'm sure I'm asking the question wrong, but I've been all over the net on this one. Hoping someone here can help. I'm building an editor SPA. Documents get uploaded, MS Flow takes over and ...
1 vote
0 answers
61 views
RoleDefinitionBindings (401) after creating ShareLink
I am a Site admin an the SC (so I have FullControl / EnumeratePermissions). For my application I use this API call on every Item with UniquePermissions: ${siteUrl}/_api/web/lists/getByTitle('${List}')/...
0 votes
1 answer
198 views
How to determine if a RoleDefinition grants read access or not?
I have the role definitions like this: https://YOUR_TENANT.sharepoint.com/sites/YOUR_SITE/_api/web/roledefinitions So this will return something like: {_ObjectType_=SP.RoleDefinition, _ObjectIdentity_=...
0 votes
1 answer
624 views
For Sharepoint 2013, $expand and $select params does not work together
For sharepoint, we are trying to get files within a given list id along with its roleAssignments information. For this, we are using REST API /Lists(guid'list_ID')/items?$expand=File&$select=*,...
0 votes
1 answer
501 views
What scope/permissions do I need to get RoleAssignments via the rest api?
I am using rest API role assignment for SharePoint Online with Oauth2.0 to fetch advanced permissions. But, I cannot give Full Control Scope to my Application. Is there any other way where I can get ...
0 votes
1 answer
95 views
Assign read and admin roles to the users on a list item in SPOnline using JSOM
I am now inheriting the permissions as I only have two groups which is group1 which has full control already and the other group is domain group which is everybody in the org so I removed that group ...
2 votes
2 answers
2k views
Break role inheritance via Graph API
I've been trying to switch between SharePoint REST API and Graph API and I can't find an equivalent of breakroleinheritance() _api/web/GetFileByServerRelativeUrl('/sites/sitename/Shared%20Documents/...
0 votes
0 answers
98 views
Access Denied to list after granting permissions to a group on a list
After granting View/Add/Edit/Open/Delete ListItems to group on a list, the users of the group still get Access Denied when trying to access the list. Here's the code I used to grant permissions: ...
2 votes
0 answers
166 views
Error after assigning permissions to a group using CSOM
After assigning permissions to a group on a Sharepoint list, the users of the group trying to access said list get the Microsoft.SharePoint.Client.ServerException: "The list « listTitleExample» does ...
1 vote
1 answer
124 views
Site collection administrator created through CSOM cannot view site
I am having a strange situation where I am not able to view a site collection as a site collection administrator. The catch is that I created the site collection admin through CSOM. Steps to ...
0 votes
1 answer
3k views
CSOM + SharePoint Online - unable to get list item role assignments
I have made a very simple CSOM program where I have fetched a List Item and I have verified that it has listItem.HasUniqueRoleAssignments = true So with that being the case, I want to get the List ...
0 votes
1 answer
640 views
getting all AD groups and users of a site collection
Hello everybody I am quite new to the Sharepoint, I am trying to get all the AD groups who have permissions on a sitecollection. I am able to get all the SPgroups and users using the code below in my ...
2 votes
1 answer
297 views
How to convert user field values into objects for adding permissions in powershell?
I have a list with a multi select (user and group) field. I want to grab the values from there and then pass them to the add permissions method. I grab the values but they come out like this 12;#...
1 vote
0 answers
487 views
Addroleassignment uses a subsite specific principal guid using Rest
I am trying to add role assignments to SharePoint Online to a folder on a personal sub site. I looked up all the users against the parent site and I have a guid of 282. When I try and assign a new ...
0 votes
1 answer
816 views
JSOM Break SharePoint List Item Permission
I wrote the following code to break list item permission. Code works fine other than a small issue. var user; function breakItemPermission(itemID) { //Get the current context var context = ...