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

1.6 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 pythonsdk
python
Python
sdk
ApprovalReassignRequest
V2025ApprovalReassignRequest
/tools/sdk/python/v2025/models/approval-reassign-request
SDK
Software Development Kit
ApprovalReassignRequest
V2025ApprovalReassignRequest

ApprovalReassignRequest

Request body for reassigning an approval request to another identity. This results in that identity being added as an authorized approver.

Properties

Name Type Description Notes
comment str Comment associated with the reassign request. [optional]
reassign_from str 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]
reassign_to str Identity to which the approval is being reassigned. [optional]
}

Example

from sailpoint.v2025.models.approval_reassign_request import ApprovalReassignRequest

approval_reassign_request = ApprovalReassignRequest(
comment='comment',
reassign_from='384532516be25f8fdf935ce19e295837',
reassign_to='152354832eb6f8f539fd738592e19ec5'
)

[Back to top]