Skip to main content

AccountcorrelatedIdentity

Identity the account is correlated with.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]DTO type of the identity the account is correlated with.[required]
idstrID of the identity the account is correlated with.[required]
namestrDisplay name of the identity the account is correlated with.[required]
}

Example

from sailpoint.triggers.models.accountcorrelated_identity import AccountcorrelatedIdentity

accountcorrelated_identity = AccountcorrelatedIdentity(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels'
)

[Back to top]