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

2.3 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
auth-user AuthUser AuthUser AuthUser pythonsdk
python
Python
sdk
AuthUser
AuthUser
/tools/sdk/python/v3/models/auth-user
SDK
Software Development Kit
AuthUser
AuthUser

AuthUser

Properties

Name Type Description Notes
tenant str Tenant name. [optional]
id str Identity ID. [optional]
uid str Identity's unique identitifier. [optional]
profile str ID of the auth profile associated with the auth user. [optional]
identification_number str Auth user's employee number. [optional]
email str Auth user's email. [optional]
phone str Auth user's phone number. [optional]
work_phone str Auth user's work phone number. [optional]
personal_email str Auth user's personal email. [optional]
firstname str Auth user's first name. [optional]
lastname str Auth user's last name. [optional]
display_name str Auth user's name in displayed format. [optional]
alias str Auth user's alias. [optional]
last_password_change_date str Date of last password change. [optional]
last_login_timestamp int Timestamp of the last login (long type value). [optional]
current_login_timestamp int Timestamp of the current login (long type value). [optional]
capabilities []str Array of the auth user's capabilities. [optional]
}

Example

from sailpoint.v3.models.auth_user import AuthUser

auth_user = AuthUser(
tenant='test-tenant',
id='2c91808458ae7a4f0158b1bbf8af0628',
uid='will.smith',
profile='2c91808458ae7a4f0158b1bbf8af0756',
identification_number='19-5588452',
email='william.smith@example.com',
phone='5555555555',
work_phone='5555555555',
personal_email='william.smith@example.com',
firstname='Will',
lastname='Smith',
display_name='Will Smith',
alias='will.smith',
last_password_change_date='2021-03-08T22:37:33.901Z',
last_login_timestamp=1656327185832,
current_login_timestamp=1656327185832,
capabilities=[
                    'ORG_ADMIN'
                    ]
)

[Back to top]