Search Query to lIst User access in UI

Hi,

Is it feasible to list user access using SailPoint Search query?

I want to list all the entitlements user has.

Ideal way you can download the Account Export from the source.
(or)
Search Query: @accounts(source.name:“Google Suite” AND entitlementAttributes.Groups:“*”)

Just replace the source name based on your source and Groups is the entitlement attribute in schema change it again based on your source’s entitlement attribute

or through

You can make use of the search API with innerhit to get the required info. Here is a sample request body :

{
    "indices": [
        "identities"
    ],
    "query": {
        "query": "jesvin.joseph",
        "innerHit": {
            "type": "access",
            "query": "source.name:Salesforce AND type:ENTITLEMENT"
        }
    }
}

Hi @chandramohan27 , I don’t think there is a direct query using search to get all the entitlements that user has. vice versa is possible. But you can try using below steps.

search using * and enable “Include Access Details“

In the downloaded report filter with the user details and you will be able to find all the entitlements that user has

image

2 Likes

@chandramohan27 This API provides the list of all entitlements for an identity - list-entitlements-by-identity | SailPoint Developer Community