Skip to main content

Approverdto

Properties

NameTypeDescriptionNotes
IdentityIDStringIdentity ID and it cannot be null.[optional]
IdStringOptional id[optional]
NameStringIdentity display name[optional]
EmailStringEmail address of identity[optional]
TypeStringUsed to mention type of data transfer object in this case it is used to transfer IDENTITY data.[optional]
OwnerOf[]ApproverreferenceList of reference of identity type dto for account owner identities[optional]
ActionedAs[]ApproverreferenceList of reference of identity type dto who acted on behalf of other identities.[optional]
Members[]ApproverreferenceList of reference of identity type dto for member identities.[optional]

Examples

  • Prepare the resource
$Approverdto = Initialize-Approverdto  -IdentityID 22efd140d88a4ceeab32c8829973244c `
-Id null `
-Name SailPoint Support `
-Email support@testmail.identitysoon.com `
-Type IDENTITY `
-OwnerOf null `
-ActionedAs null `
-Members null
  • Convert the resource to JSON
$Approverdto | ConvertTo-JSON

[Back to top]