In ISC i need to fetch all roles a user has is there any query for this?

Hey Guys,

In ISC i need to fetch all roles a user has is there any query for this?? and also i need a query to fetch all identities with SAP entitlements (we have multiple SAP apps so for all the SAP apps)?? thanks

@Rakesh_Singh_1234 there is no search query like this to get all the roles one user has .However you can retreive all the user in a specific role using the below

@access(type:ROLE AND name:ā€rolenameā€)

can we have any query in which we can get all identities having SAp entitlements then?

or can we see all identities with what role they have ?

@Rakesh_Singh_1234 you can get all the users who have a specific entitlement or if they have some common name

@access(name:ā€œname of entitlementā€)

@access(name:ā€œSAP*ā€)

OR can use this

@access(source.name:ā€œApplication nameā€)

it will give all users ? with entilements as SAP

Search by identity id that will return single identity. Then download the report including access items which will include all accesses the identity has. In the CSV you can apply filter to view any specific type of access

Is using APIs an option?

Such API response contains these details.

Maybe you can talk more about your usecase , so that we can suggest.