Skip to main content

AccountattributeschangedIdentity

The identity whose account attributes were updated.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]DTO type of the identity whose account attributes were updated.[required]
idstrID of the identity whose account attributes were updated.[required]
namestrDisplay name of the identity whose account attributes were updated.[required]
}

Example

from sailpoint.triggers.models.accountattributeschanged_identity import AccountattributeschangedIdentity

accountattributeschanged_identity = AccountattributeschangedIdentity(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels'
)

[Back to top]