Please consider addressing the following when creating your topic:
What have you tried? AD group aggregation. Entitlement created with non requestable.
What errors did you face (share screenshots)? requestable is false.
Share the details of your efforts (code / search query, workflow json etc.)?
What is the result you are getting and what were you expecting? During group aggregation or any auto process want to set requestable to true for all entitlements.
There is option to make requestable to true by UI, but this manual process, i am looking auto process.
Hello Sandeep, This is what I found:
By default, SailPoint ISC’s AD group aggregation does not automatically set requestable = true on imported entitlements (such as AD groups). The UI option (editing individual entitlements to set requestable = true) is manual and not scalable for large environments.
You can try this:
Since aggregation itself doesn’t have a built-in setting to mark entitlements as requestable, you can:
Post-aggregation rule / workflow: Set up a workflow (or rule, if supported in your tenant) that runs after aggregation and updates all entitlements where requestable = false to true.
API automation: Use the ISC REST API (or beta Graph API) to:
Search for entitlements with requestable = false
Update their metadata in bulk to set requestable = true
You can consider using a workflow to achieve this.
Setup a WF with a scheduled trigger, running after your aggregation timing.
Next step would be an HTTP action that can run a search query, fetching the entitlements marked as non-requestable. The search body would look something as below :
Loop through each of these entitlements and then use an HTTP action inside the loop to patch each entitlement with this API to mark the entitlements as requestable.