Skip to main content

AccountDeletedEvent

Details about the event.

Properties

NameTypeDescriptionNotes
typeEnum [ 'ACCOUNT_DELETED_V2' ]The type of event.[required]
causeEnum [ 'AGGREGATION', 'PROVISIONING' ]The cause of the event.[required]
}

Example

from sailpoint.triggers.models.account_deleted_event import AccountDeletedEvent

account_deleted_event = AccountDeletedEvent(
type='ACCOUNT_DELETED_V2',
cause='AGGREGATION'
)

[Back to top]