Skip to main content

Retrieve Disbursement Batch Entries

Overview​

Retrieves a paginated list of entries within a disbursement batch. Each entry represents a single transfer to a destination account.

Command Details​

  • Command: RetrieveDisbursementBatchEntriesQuery
  • Type: Query (read operation)
  • Permissions required: Disbursement View

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
pageNumberintNoPage number (default: 1)
pageSizeintNoItems per page (default: 10)
batchIdlongNoFilter by batch ID
isExportboolNoExport mode (default: false)

Try It Out​

POST/api/bpm/cmdRetrieveDisbursementBatchEntriesQuery
Request Body

Response Structure​

{
"success": true,
"data": {
"items": [
{
"entryId": 3085,
"batchId": 1024,
"bankCode": "058",
"destinationAccount": "0098765432",
"amount": 250000.00,
"narration": "March salary - John Doe",
"status": "Pending"
},
{
"entryId": 3086,
"batchId": 1024,
"bankCode": "044",
"destinationAccount": "0056781234",
"amount": 180000.00,
"narration": "March salary - Jane Smith",
"status": "Pending"
}
],
"pageNumber": 1,
"pageSize": 10,
"totalCount": 2,
"totalPages": 1
},
"message": "Entries retrieved successfully"
}