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.accountupdated_event import AccountupdatedEvent

accountupdated_event = AccountupdatedEvent(
type='ACCOUNT_UPDATED_V2',
cause='AGGREGATION'
)

[Back to top]