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.access_requests.models.identityreferencewithnameandemail import Identityreferencewithnameandemail

identityreferencewithnameandemail = Identityreferencewithnameandemail(
type='IDENTITY',
id='5168015d32f890ca15812c9180835d2e',
name='Alison Ferguso',
email='alison.ferguso@identitysoon.com'
)

[Back to top]