Skip to main content

Approvaldetails

Properties

NameTypeDescriptionNotes
ApproverApproverdto[optional]
ApproverCommentsStringComments added by approver while rejecting or approving the account deletion request.[optional]
DecisionDateSystem.DateTimeDecision date of approval rejected or approved.[optional] [readonly]
SerialOrderInt64SerialOrder of approval details.[optional]
StatusAccountrequestphasestate[optional]

Examples

  • Prepare the resource
$Approvaldetails = Initialize-Approvaldetails  -Approver null `
-ApproverComments Approving account deletion request due to long term inactivity of account. `
-DecisionDate 2026-01-21T11:43:22.432Z `
-SerialOrder 12345 `
-Status null
  • Convert the resource to JSON
$Approvaldetails | ConvertTo-JSON

[Back to top]