How can I find which workflow trigger when I am deleting account from manage account quicklink and also notification during approval process.
For “Manage Accounts” quicklink check LCM Provisioning
workflow, you find in Life Cycle Manager configurations
LCM Provisioning handles deletion of account from manage accounts and there is a subprocess Identity Request Notify to manage notifications. For more details go through Lifecycle Manager Workflows - Compass
A. Use Debug Logs (if enabled):
- Go to System Logs or download
sailpoint.log
. - Filter logs with:
DELETE operation
plan.setOperation(“Delete”)
provisionAccount
This will show which rule or workflow processed the delete action.
B. Check Provisioning Policies
Go to: Applications → [App Name] → Provisioning Configuration
Look at Provisioning Policy → Delete
tab
See if any rules or attributes are invoked.
C. Check Rules Used
Look at the application-level rules:
BeforeProvisioningRule ProvisioningRule
These are often called during delete.
D. Check Workflows
If you’re using Workflows (new IdentityNow workflows):
- Go to Workflows > Monitor Executions (in IdentityNow)
- Perform a delete from UI
- Refresh and look for the most recent workflow triggered — the input usually includes `operation: “DELETE”
Hi Aman ,
Please try the below methods.
SailPoint IdentityIQ (IIQ)
- Navigate to:
IdentityIQ > Workflows
- Look for:
Lifecycle EventsAccess Request Approval
Role Request Approver` - Open the workflow → Go to the email or notification steps.
These are usuallySendEmail
,NotifyApprover
, orEmailApprovalStep
.
C. Check Email Templates (Optional)
In IdentityIQ:
Go to Email Templates section.
earch for templates like:
Approval Required Access Request Approved
Access Request Rejected`
Summary Steps
Action | Where to Look |
---|---|
Account Deletion Trigger | Application’s Provisioning Rules + Workflow Execution Logs |
Workflow Logs | IdentityNow: Workflows > Monitor Executions |
Approval Notification | Workflow using “Approval Required” + Send Email step |
IIQ Email Notification | Workflow XML + Email Templates |