There is requirement to have report of roles along with entitlements rather a entitlement count.
I don’t think you can get this in the UI Search. You can use the search API to get the entitlements of the Role, but again it will return only the entitlements which directly attached to the role. Below is the body of the Search API and you can optimize it based on your need.
{
"indices": [
"roles"
],
"query": {
"query": "Test Role name"
},
"queryResultFilter": {
"includes": [
]
},
"filters": {}
}
Through the UI, you can only get the list of Access Profiles from the Role.
You can use the API to extract that information instead:
list-roles | SailPoint Developer Community
get-role | SailPoint Developer Community