We know that for identities events we can have “Modify account failed”
- How to get report all at once of those events
- Any way to notify when “Modify account failed”
We know that for identities events we can have “Modify account failed”
You can use this search query to get REPORT of “Modify account failed” events
operation:MODIFY AND status:FAILED
you can save this search and create a subscription to get the reports in inbox
You can create a workflow and trigger based on Account Provisioning completed and filter it for failed Modify operation.
Further, you can send email notification whenever there is an modify account activity failed.
Thanks,
Nikhlesh
Please let us know little bit elaborate one like sequence of flow
You can get a report of “Modify Account Failed” events using Search → Identity Activity and filter by that event type. Save the search and set up a scheduled subscription to email reports regularly. For real-time alerts, create a workflow triggered by account-modify.failed
. In the workflow, add a Send Email step to notify admins with failure details. This setup ensures you’re both alerted and can track failures over time.
This the flow you need to follow. In Provisioning Completed Trigger add filter for Failed Modify operation like below.
$.accountRequests[?(@.provisioningResult == 'failed' && @.accountOperation == 'Modify')]
Thanks,
Nikhlesh
for sure let us try this. thank you!