Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/ApprovalReassignRequest.md
2025-07-30 20:42:10 +00:00

1.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-approval-reassign-request ApprovalReassignRequest ApprovalReassignRequest ApprovalReassignRequest powershellsdk
powershell
PowerShell
sdk
ApprovalReassignRequest
V2025ApprovalReassignRequest
/tools/sdk/powershell/v2025/models/approval-reassign-request
SDK
Software Development Kit
ApprovalReassignRequest
V2025ApprovalReassignRequest

ApprovalReassignRequest

Properties

Name Type Description Notes
Comment String Comment associated with the reassign request. [optional]
ReassignFrom String Identity 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]
ReassignTo String Identity 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]