Skip to main content

AccountUncorrelatedAccount

Properties

NameTypeDescriptionNotes
TypeEnum [ "ACCOUNT" ]Uncorrelated account's DTO type.[required]
IdStringUncorrelated account's ID.[required]
NameStringUncorrelated account's display name.[required]
NativeIdentityStringUnique ID of the account on the source.[required]
UuidStringThe source's unique identifier for the account. UUID is generated by the source system.[optional]

Examples

  • Prepare the resource
$AccountUncorrelatedAccount = Initialize-PSSailpoint.V2024AccountUncorrelatedAccount  -Type ACCOUNT `
-Id 4dd497e3723e439991cb6d0e478375dd `
-Name Sadie Jensen `
-NativeIdentity cn=john.doe,ou=users,dc=acme,dc=com `
-Uuid 1cb1f07d-3e5a-4431-becd-234fa4306108
  • Convert the resource to JSON
$AccountUncorrelatedAccount | ConvertTo-JSON

[Back to top]