Skip to main content

ApprovalReassignRequest

Properties

NameTypeDescriptionNotes
CommentStringComment associated with the reassign request.[optional]
ReassignFromStringIdentity from which the approval is being reassigned. If left blank, and the approval is currently assigned to the user calling this endpoint, it will use the calling user's identity. If left blank, and the approval is not currently assigned to the user calling this endpoint, you need to be an admin, which would add the reassignTo as a new approver.[optional]
ReassignToStringIdentity to which the approval is being reassigned.[optional]

Examples

  • Prepare the resource
$ApprovalReassignRequest = Initialize-V2025ApprovalReassignRequest  -Comment comment `
-ReassignFrom 384532516be25f8fdf935ce19e295837 `
-ReassignTo 152354832eb6f8f539fd738592e19ec5
  • Convert the resource to JSON
$ApprovalReassignRequest | ConvertTo-JSON

[Back to top]