Forum Discussion
chriscanning
Feb 13, 2024Copper Contributor
Full Control for a MS List without being Site Owner
Hi, I have an issue where we have SharePoint list items that have been allocated individual permission via Power Automate. I want to have 'full control' allocated to each item similar to how Shar...
- Feb 15, 2024
You can first use EnsureUser endpoint and then roleassignments/addroleassignment endpoint to assign the permissions to security groups on the individual list items.
Refer this article for related information: SharePoint Online: Grant Permissions to Azure AD Security group using Power Automate and REST API - here I am granting permissions at "site" level but you have to grant permissions at "item" level (similar endpoint as you are using for granting permissions to users/members).
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
ganeshsanap
Feb 14, 2024MVP
Try these two things:
- Grant full control permissions at the "list" level - this will give full control for list items inheriting permissions from the list: I think you already this as per your screenshot.
- After step #1, grant full control permissions on each individual item via Power automate flow - this will give full control for list items with unique permissions.
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
chriscanning
Feb 15, 2024Copper Contributor
Thanks for the reply. Yes I have continued looking into this and came to the same conclusion. Any idea how to do this for a security group as opposed to the SharePoint site members group?
- ganeshsanapFeb 15, 2024MVP
You can first use EnsureUser endpoint and then roleassignments/addroleassignment endpoint to assign the permissions to security groups on the individual list items.
Refer this article for related information: SharePoint Online: Grant Permissions to Azure AD Security group using Power Automate and REST API - here I am granting permissions at "site" level but you have to grant permissions at "item" level (similar endpoint as you are using for granting permissions to users/members).
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
- chriscanningFeb 19, 2024Copper ContributorAmazing, thank you!