Skip to main content

IdentityReference

The manager for the identity.

Properties

NameTypeDescriptionNotes
typeDtoType[optional]
idstrIdentity id[optional]
namestrHuman-readable display name of identity.[optional]
}

Example

from sailpoint.v2024.models.identity_reference import IdentityReference

identity_reference = IdentityReference(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='Thomas Edison'
)

[Back to top]