Skip to main content

AccountcreatedEvent

Details about the event.

Properties

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

Example

from sailpoint.triggers.models.accountcreated_event import AccountcreatedEvent

accountcreated_event = AccountcreatedEvent(
type='ACCOUNT_CREATED_V2',
cause='AGGREGATION'
)

[Back to top]