searchBankDocuments

abstract fun searchBankDocuments(searchBankDocumentsRequestDto: SearchBankDocumentsRequestDto, page: Int, size: Int, sortOrder: List<SortOrder>): BankDocumentsPageDto

Searches for bank documents based on the specified parameters.

Return

The response containing the requested bank documents.

Parameters

page

The page number of the result set.

size

The size of each page in the result set.

sortOrder

The sort order for the result set. Each sort order consists of a direction (ASC or DESC) and a field name.

searchBankDocumentsRequestDto

The bank document data request object specifying the search criteria.

Throws

If an I/O error occurs during the search.

If the search execution encounters an exception.

If the search execution is interrupted.