Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/Identity.md
2025-02-20 12:59:19 -05:00

2.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-identity Identity Identity Identity pythonsdk
python
Python
sdk
Identity
BetaIdentity
/tools/sdk/python/beta/models/identity
SDK
Software Development Kit
Identity
BetaIdentity

Identity

Properties

Name Type Description Notes
id str System-generated unique ID of the identity [optional] [readonly]
name str The identity's name is equivalent to its Display Name attribute. [required]
created datetime Creation date of the identity [optional] [readonly]
modified datetime Last modification date of the identity [optional] [readonly]
alias str The identity's alternate unique identifier is equivalent to its Account Name on the authoritative source account schema. [optional]
email_address str The email address of the identity [optional]
processing_state Enum [ 'ERROR', 'OK' ] The processing state of the identity [optional]
identity_status Enum [ 'UNREGISTERED', 'REGISTERED', 'PENDING', 'WARNING', 'DISABLED', 'ACTIVE', 'DEACTIVATED', 'TERMINATED', 'ERROR', 'LOCKED' ] The identity's status in the system [optional]
manager_ref IdentityManagerRef [optional]
is_manager bool Whether this identity is a manager of another identity [optional] [default to False]
last_refresh datetime The last time the identity was refreshed by the system [optional]
attributes object A map with the identity attributes for the identity [optional]
lifecycle_state IdentityLifecycleState [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='walter.white@example.com',
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]