Hi All,
Does anyone know how to generate a report and query the users who are deleted today in a specific application? Thank you!
Hi All,
Does anyone know how to generate a report and query the users who are deleted today in a specific application? Thank you!
Hi Jasmine,
Are you looking for identities that had an account deleted by a SailPoint provisioning plan? Or those that were dropped from an aggregation because they were deleted natively in the source?
Thanks,
Liam
Hi @jasmedina,
Usually there are two events that you can query in the search, one will account deletion and other will give you identity deletion events with user details, PFB:
“Delete User Passed” and “Delete Identity Passed” but this you cannot search with regards to some source (application).
"delete user passed" AND created:[now-1d TO now]
"delete user passed" AND created:<date>
I would recommend you to a excellent feature “Native Change Detection” by this you can monitor following:
Please find the SailPoint document to enable this feature in your source and steps how you can search these events.
Native Change Account Deleted | SailPoint Developer Community
Hope this will help!
Hi @jasmedina
This might work
@accountRequests(op:delete) AND @accountRequests(source.name:"source name")
Hi @jasmedina, Using source account deleted trigger you can check. If the account is deleted for a particular application.
Hi Liam,
I am looking for accounts deleted by a SailPoint provisioning plan. I have a rule that will delete all inactive accounts and accounts with no last login date, and want to have some sort of report to list all those deleted accounts
As @gourab mentioned, this query will work for your case.
@accountRequests(op:Delete) AND @accountRequests(source.name:“<source_name>”)
I tried the query but it didn’t return the correct results I was expecting
Hi Gourab, I tried this but it looks like it can only output the deleted accounts from a lifecycle state change. I have a rule that will delete all inactive accounts and accounts with no last login date. The query wasn’t able to capture the deleted accounts from that rule.
hi @jasmedina,
Can you try with this search query.
name:"Remove Source Account Passed" AND operation:"REMOVE"
you can add the date you can add an AND condition and this “created:[now-1d TO now]”
Thanks,
Uday
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.