Skip to main content

AccountRequestPhase

Properties

NameTypeDescriptionNotes
NameEnum [ "APPROVAL_PHASE", "PROVISIONING_PHASE" ]Enum of account request phase type[optional]
StateAccountRequestPhaseState[optional]
StartedSystem.DateTimeStart date of account request phase.[optional] [readonly]
FinishedSystem.DateTimeFinish date of account request phase.[optional] [readonly]

Examples

  • Prepare the resource
$AccountRequestPhase = Initialize-AccountRequestPhase  -Name APPROVAL_PHASE `
-State null `
-Started 2026-01-21T11:43:22.432Z `
-Finished 2026-01-21T11:45:22.432Z
  • Convert the resource to JSON
$AccountRequestPhase | ConvertTo-JSON

[Back to top]