Skip to main content

BulkRejectRequestDTO

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

Properties

NameTypeDescriptionNotes
approval_ids[]strArray of Approval IDs to be bulk rejected[optional]
commentstrOptional comment to include with the bulk reject request[optional]
}

Example

from sailpoint.v2025.models.bulk_reject_request_dto import BulkRejectRequestDTO

bulk_reject_request_dto = BulkRejectRequestDTO(
approval_ids=[38453251-6be2-5f8f-df93-5ce19e295837, 38453251-6be2-5f8f-df93-5ce19e295838],
comment='Bulk reject by admin'
)

[Back to top]