Query to get filter only specific "entitlement type" from a source

We have entitlement type “entity” in a source xyz, now we need query to get only those entitlements along with roles associated with that entitlements. let us know please.

Hi @shaffusailpoint
Could you please clarify if “entity” is the entitlement type or the entitlement itself, and share more information about your requirement for better understanding?

it is entitlement type. And need to fetch only entitlements of that entitlement type from that source and also entitlement part of roles as well

You can use this query attribute:"attributType" AND source.name:sourceName to get the entitlements. However, I don’t think you can get the roles directly based on source name and entitlement type. You will have to write a script with some logic to get the roles and write them to a csv file

@shaffusailpoint Use a Search API

@shaffusailpoint, below should give you only the list of entitlements

attribute:entity AND source.name:"xyz"

Like Nithesh rightly mentioned, ISC does not directly display the roles containing the entitlements based off the above query. Some scripting would definitely be required.