Skip to main content

Bulkreassignrequestdto

BulkReassignRequestDTO is the input struct that represents the request body required to facilitate a bulk reassignment action for a set of generic approval requests.

Properties

NameTypeDescriptionNotes
approval_ids[]strArray of Approval IDs to be bulk reassigned[optional]
commentstrOptional comment to include with the bulk reassignment request[optional]
reassign_fromstrIdentity ID from which the approval requests are being reassigned[optional]
reassign_tostrReassignTo signifies the Identity ID that the approval request is being reassigned to[optional]
}

Example

from sailpoint.approvals.models.bulkreassignrequestdto import Bulkreassignrequestdto

bulkreassignrequestdto = Bulkreassignrequestdto(
approval_ids=["38453251-6be2-5f8f-df93-5ce19e295837","38453251-6be2-5f8f-df93-5ce19e295838"],
comment='Bulk reassignment by admin',
reassign_from='12353251-6be2-5f8f-df93-5ce19b6e5837',
reassign_to='32454251-6ce2-5d8f-df93-5ce19e295238'
)

[Back to top]