Skip to main content

AccountUpdatedEvent

Details about the event.

Properties

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

Example

from sailpoint.triggers.models.account_updated_event import AccountUpdatedEvent

account_updated_event = AccountUpdatedEvent(
type='ACCOUNT_UPDATED_V2',
cause='AGGREGATION'
)

[Back to top]