Retrieve All Identity Security Cloud Roles

Hello,

Is there an API call to retrieve all ISC user levels?
I tried to look into the documentation but I wasn’t able to find anything related to this.

Currently what we tried to do is to make a search request with the following query: “source.name.exact:\“IdentityNow\” AND attribute:assignedGroups”. but it doesn’t seem like all roles are returned.

Regards,

Hello @Nadim ,

With search endpoint : search-post | SailPoint Developer Community, you can use the following body :

{
  "query": {
    "query": "source.name.exact:IdentityNow AND attribute:assignedGroups"
  },
  "indices": [
    "entitlements"
  ],
  "sort": [
    "name"
  ],
  "includeNested": false
}
1 Like

Hello Ousmane,

This is what we currently use. but it seems that not all roles are being returned

It return 10 :

We have more than 10 in the ui and the ui add this aditionnal new user level :

image

But i confirm that their not exist in the search result, i think there are additionnal level and not really natif user level :

But you can confirm with Sailpoint.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.