Skip to main content

ApprovalForwardHistory

Properties

NameTypeDescriptionNotes
OldApproverNameStringDisplay name of approver from whom the approval was forwarded.[optional]
NewApproverNameStringDisplay name of approver to whom the approval was forwarded.[optional]
CommentStringComment made while forwarding.[optional]
ModifiedSystem.DateTimeTime at which approval was forwarded.[optional]
ForwarderNameStringDisplay name of forwarder who forwarded the approval.[optional]
ReassignmentTypeReassignmentType[optional]

Examples

  • Prepare the resource
$ApprovalForwardHistory = Initialize-PSSailpoint.V2024ApprovalForwardHistory  -OldApproverName Frank Mir `
-NewApproverName Al Volta `
-Comment Forwarding from Frank to Al `
-Modified 2019-08-23T18:52:57.398Z `
-ForwarderName William Wilson `
-ReassignmentType null
  • Convert the resource to JSON
$ApprovalForwardHistory | ConvertTo-JSON

[Back to top]