Skip to main content

AccountStatusChanged

Properties

NameTypeDescriptionNotes
event_typestrthe event type[optional]
identity_idstrthe identity id[optional]
date_timestrthe date of event[optional]
accountAccountStatusChangedAccount[required]
status_changeAccountStatusChangedStatusChange[required]
}

Example

from sailpoint.beta.models.account_status_changed import AccountStatusChanged

account_status_changed = AccountStatusChanged(
event_type='AccountStatusChanged',
identity_id='8a80828f643d484f01643e14202e206f',
date_time='2019-03-08T22:37:33.901Z',
account=sailpoint.beta.models.account_status_changed_account.AccountStatusChanged_account(
id = '2c91808a77ff216301782327a50f09bf',
native_identity = 'dr.arden.ogahn.d',
display_name = 'Adam Archer',
source_id = '8a80828f643d484f01643e14202e206f',
source_name = 'JDBC Entitlements Source',
entitlement_count = 2,
access_type = 'account', ),
status_change=sailpoint.beta.models.account_status_changed_status_change.AccountStatusChanged_statusChange(
previous_status = 'enabled',
new_status = 'disabled', )
)

[Back to top]