Skip to main content

ApprovalIdentityRecord

Properties

NameTypeDescriptionNotes
IdentityIDStringIdentity ID.[optional]
TypeEnum [ "IDENTITY" ]Type of identity.[optional]
NameStringName of the identity.[optional]
ActionedAs[]ApprovalReferenceList of references representing actions taken by the identity.[optional]
Members[]ApprovalReferenceList of references representing members of the identity.[optional]
DecisionDateSystem.DateTimeDate when the decision was made.[optional]
EmailStringEmail associated with the identity.[optional]

Examples

  • Prepare the resource
$ApprovalIdentityRecord = Initialize-V2025ApprovalIdentityRecord  -IdentityID 17e633e7d57e481569df76323169deb6a `
-Type IDENTITY `
-Name Jim Bob `
-ActionedAs null `
-Members null `
-DecisionDate 2023-04-12T23:20:50.520Z `
-Email user@example.com
  • Convert the resource to JSON
$ApprovalIdentityRecord | ConvertTo-JSON

[Back to top]