Skip to main content

AuthUser

Properties

NameTypeDescriptionNotes
tenantstrTenant name.[optional]
idstrIdentity ID.[optional]
uidstrIdentity's unique identitifier.[optional]
profilestrID of the auth profile associated with the auth user.[optional]
identification_numberstrAuth user's employee number.[optional]
emailstrAuth user's email.[optional]
phonestrAuth user's phone number.[optional]
work_phonestrAuth user's work phone number.[optional]
personal_emailstrAuth user's personal email.[optional]
firstnamestrAuth user's first name.[optional]
lastnamestrAuth user's last name.[optional]
display_namestrAuth user's name in displayed format.[optional]
aliasstrAuth user's alias.[optional]
last_password_change_datedatetimeDate of last password change.[optional]
last_login_timestampintTimestamp of the last login (long type value).[optional]
current_login_timestampintTimestamp of the current login (long type value).[optional]
last_unlock_timestampdatetimeThe date and time when the user was last unlocked.[optional]
capabilities[]strArray of the auth user's capabilities.[optional]
}

Example

from sailpoint.v2024.models.auth_user import AuthUser

auth_user = AuthUser(
tenant='test-tenant',
id='2c91808458ae7a4f0158b1bbf8af0628',
uid='will.smith',
profile='2c91808458ae7a4f0158b1bbf8af0756',
identification_number='19-5588452',
email='[email protected]',
phone='5555555555',
work_phone='5555555555',
personal_email='[email protected]',
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,
last_unlock_timestamp='2021-03-08T22:37:33.901Z',
capabilities=[
'ORG_ADMIN'
]
)

[Back to top]