web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Customer experience | Sales, Customer Insights,...
Unanswered

retrieve all privileges for security role

(1) ShareShare
ReportReport
Posted on by Microsoft Employee

public static List<Entity> RetrieveRolePrivileges(Guid securityRoleId)
{
var roleRequest = new RetrieveRolePrivilegesRoleRequest { RoleId = securityRoleId };
RetrieveRolePrivilegesRoleResponse roleReponse = new RetrieveRolePrivilegesRoleResponse();
roleReponse = (RetrieveRolePrivilegesRoleResponse)service.Execute(roleRequest);

var privilegeQuery = new QueryExpression { EntityName = "privilege", ColumnSet = new ColumnSet(true) };

var filter = new FilterExpression(LogicalOperator.Or);

List<Guid> prvIdCollecyion = new List<Guid>();
foreach (var p in roleReponse.RolePrivileges)
{
prvIdCollecyion.Add(p.PrivilegeId);
}
filter.AddCondition("privilegeid", ConditionOperator.In, prvIdCollecyion.Cast<object>().ToArray());


privilegeQuery.Criteria = filter;

List<Entity> contactPrivileges = new List<Entity>();
EntityCollection privileges = service.RetrieveMultiple(privilegeQuery);

contactPrivileges = privileges.Entities.ToList()
.Where(p => p.GetAttributeValue<String>("name").ToLower()
.Contains("contact")).ToList();

return contactPrivileges;
}

I have the same question (0)
  • AS-14101738-0 Profile Picture
    Microsoft Employee on at

    Is there any simpler way then this?

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Women in Power Builds Momentum

Expanding mentorship, skilling, and AI innovation

Congratulations to the June Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Customer experience | Sales, Customer Insights, CRM

#1
Manoj - ManoVerse Profile Picture

Manoj - ManoVerse 131 Super User 2026 Season 1

#2
11manish Profile Picture

11manish 88

#3
Chris1968 Profile Picture

Chris1968 20

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans