Skip to main content

IdentityReference2

Details about the identity correlated with the account.

Properties

NameTypeDescriptionNotes
idstrThe ID of the identity that is correlated with this account.[required]
namestrThe name of the identity that is correlated with this account.[required]
aliasstrThe alias of the identity.[required]
emailstrThe email of the identity.[required]
}

Example

from sailpoint.triggers.models.identity_reference2 import IdentityReference2

identity_reference2 = IdentityReference2(
id='ee769173319b41d19ccec6c235423237b',
name='john.doe',
alias='jdoe',
email='john.doe@email.com'
)

[Back to top]