Share all details about your problem, including any error messages you may have received.
Hi, All I am looking for a way to check Pending/Past Identity events for any Identity. This the details that can be seen under Events in Identity Warehouse. Any details would be helpful such as object type to check in Debug or UI or DB column
I am specifically looking for events of below type
Hi @verma14 What you see on the Events tab in Identity Warehouse for an identity is partially populated from AuditEvent. An AuditEvent object with action=“identityLifecycleEvent” is created for each Identity Events triggered for the identity.
In SailPoint, the “Events” section you see under Identity Warehouse is not coming from a single dedicated object. Instead, it is a combined view built from different backend objects. The most important one is IdentityRequest, which stores lifecycle events like joiner, mover, leaver, and access requests. For technical provisioning actions such as account enable/disable or group changes, the data comes from ProvisioningTransaction. In some cases, additional details are pulled from audit logs like AuditEvent. So if you are trying to check these events in Debug or the database, you mainly need to look at IdentityRequest, Identity and ProvisioningTransaction, as together they represent what is shown in the Events tab.
@verma14 The section which you highlighted is not representing the past event.. it is a scheduled event: Scheduled events come from AttributeAssignment in Identity object and Request object. Similarly, past events comes from audit event with action: identityLifeCycleEvent.
Could you please specify what is the usecase you are trying to achieve? May be there is an alternate way to do it.