Skip to main content

Identity

Properties

NameTypeDescriptionNotes
idstrSystem-generated unique ID of the identity[optional] [readonly]
namestrThe identity's name is equivalent to its Display Name attribute.[required]
createddatetimeCreation date of the identity[optional] [readonly]
modifieddatetimeLast modification date of the identity[optional] [readonly]
aliasstrThe identity's alternate unique identifier is equivalent to its Account Name on the authoritative source account schema.[optional]
email_addressstrThe email address of the identity[optional]
processing_stateEnum [ 'ERROR', 'OK' ]The processing state of the identity[optional]
identity_statusEnum [ 'UNREGISTERED', 'REGISTERED', 'PENDING', 'WARNING', 'DISABLED', 'ACTIVE', 'DEACTIVATED', 'TERMINATED', 'ERROR', 'LOCKED' ]The identity's status in the system[optional]
manager_refIdentityManagerRef[optional]
is_managerboolWhether this identity is a manager of another identity[optional] [default to False]
last_refreshdatetimeThe last time the identity was refreshed by the system[optional]
attributesobjectA map with the identity attributes for the identity[optional]
lifecycle_stateIdentityLifecycleState[optional]
}

Example

from sailpoint.beta.models.identity import Identity

identity = Identity(
id='01f04e428c484542a241dc89c303b178',
name='Walter White',
created='2023-01-03T21:16:22.432Z',
modified='2023-01-03T21:16:22.432Z',
alias='walter.white',
email_address='[email protected]',
processing_state='ERROR',
identity_status='LOCKED',
manager_ref=sailpoint.beta.models.identity_manager_ref.Identity_managerRef(
type = 'IDENTITY',
id = '2c4180a46faadee4016fb4e018c20626',
name = 'Robert Robinson', ),
is_manager=True,
last_refresh='2020-11-22T15:42:31.123Z',
attributes={uid=86754, firstname=Walter, cloudStatus=UNREGISTERED, displayName=Walter White, identificationNumber=86754, lastSyncDate=1470348809380, email=walter.white@example.com, lastname=White},
lifecycle_state=
)

[Back to top]