Skip to main content

AccountCorrelatedAccount

Properties

NameTypeDescriptionNotes
TypeEnum [ "ACCOUNT" ]The correlated account's DTO type.[required]
IdStringThe correlated account's ID.[required]
NameStringThe correlated 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
$AccountCorrelatedAccount = Initialize-PSSailpoint.V2024AccountCorrelatedAccount  -Type ACCOUNT `
-Id 98da47c31df444558c211f9b205184f6 `
-Name Brian Mendoza `
-NativeIdentity cn=john.doe,ou=users,dc=acme,dc=com `
-Uuid 1cb1f07d-3e5a-4431-becd-234fa4306108
  • Convert the resource to JSON
$AccountCorrelatedAccount | ConvertTo-JSON

[Back to top]