Hi @Ankitha12 ,
Welcome to the Sailpoint Developer Community
Try source id instead of name and see if that works @accounts(source.id:“**********************”) AND attributes.cloudLifecycleState:active
This cannot be extracted from a single search query as there is no way in search to apply filters currently. There are two ways currently to suffice this -
Run your query in Search and Include Access Details while downloading the report. Filter this data for Access Source Name for the required application.
Go to Connections → Sources → Open Source → Go to Accounts Page → Click on Export. Filter the data as required.
Hi @Ankitha12 , the only way to export such customized report is via writing a Script.
Use search API in Python/Powershell OR whichever Programming language you are comfortable with.
Iterate through the response and write logic in the code to append only those rows which has entitlement source name listed as “Application ABC”.
You could schedule this code to run on client’s server and send the report to any client side email address using client’s smtp server.
Seems too much effort when we can just filter the exported data from Search Export.