Skip to main content

IdentityReferenceWithNameAndEmail

Properties

NameTypeDescriptionNotes
typestrThe type can only be IDENTITY. This is read-only.[optional]
idstrIdentity ID.[optional]
namestrIdentity's human-readable display name. This is read-only.[optional]
emailstrIdentity's email address. This is read-only.[optional]
}

Example

from sailpoint.beta.models.identity_reference_with_name_and_email import IdentityReferenceWithNameAndEmail

identity_reference_with_name_and_email = IdentityReferenceWithNameAndEmail(
type='IDENTITY',
id='5168015d32f890ca15812c9180835d2e',
name='Alison Ferguso',
email='[email protected]'
)

[Back to top]