Skip to main content

AuthUser

Properties

NameTypeDescriptionNotes
TenantStringTenant name.[optional]
IdStringIdentity ID.[optional]
UidStringIdentity's unique identitifier.[optional]
VarProfileStringID of the auth profile associated with the auth user.[optional]
IdentificationNumberStringAuth user's employee number.[optional]
EmailStringAuth user's email.[optional]
PhoneStringAuth user's phone number.[optional]
WorkPhoneStringAuth user's work phone number.[optional]
PersonalEmailStringAuth user's personal email.[optional]
FirstnameStringAuth user's first name.[optional]
LastnameStringAuth user's last name.[optional]
DisplayNameStringAuth user's name in displayed format.[optional]
AliasStringAuth user's alias.[optional]
LastPasswordChangeDateStringDate of last password change.[optional]
LastLoginTimestampInt64Timestamp of the last login (long type value).[optional]
CurrentLoginTimestampInt64Timestamp of the current login (long type value).[optional]
Capabilities[]StringArray of the auth user's capabilities.[optional]

Examples

  • Prepare the resource
$AuthUser = Initialize-PSSailpoint.V3AuthUser  -Tenant test-tenant `
-Id 2c91808458ae7a4f0158b1bbf8af0628 `
-Uid will.smith `
-VarProfile 2c91808458ae7a4f0158b1bbf8af0756 `
-IdentificationNumber 19-5588452 `
-Email william.smith@example.com `
-Phone 5555555555 `
-WorkPhone 5555555555 `
-PersonalEmail william.smith@example.com `
-Firstname Will `
-Lastname Smith `
-DisplayName Will Smith `
-Alias will.smith `
-LastPasswordChangeDate 2021-03-08T22:37:33.901Z `
-LastLoginTimestamp 1656327185832 `
-CurrentLoginTimestamp 1656327185832 `
-Capabilities null
  • Convert the resource to JSON
$AuthUser | ConvertTo-JSON

[Back to top]