Skip to main content

ApprovalReference

Properties

NameTypeDescriptionNotes
IdStringId of the reference object[optional]
TypeStringWhat reference object does this ID correspond to[optional]
NameStringName of the reference object[optional]
EmailStringEmail associated with the reference object[optional]
SerialOrderInt64The serial step of the identity in the approval. For example serialOrder 1 is the first identity to action in an approval request chain. Parallel approvals are set to 0.[optional]

Examples

  • Prepare the resource
$ApprovalReference = Initialize-V2025ApprovalReference  -Id 64012350-8fd9-4f6c-a170-1fe123683899 `
-Type AccessRequestId `
-Name Access Request `
-Email user@example.com `
-SerialOrder 0
  • Convert the resource to JSON
$ApprovalReference | ConvertTo-JSON

[Back to top]