Skip to main content

Confirm Disbursement Batch

Overview​

Confirms a disbursement batch and moves it from Draft to PendingReview status. Once confirmed, entries can no longer be added or removed. The batch is now ready for the review stage of the approval workflow.

Command Details​

  • Command: ConfirmDisbursementBatchCommand
  • Type: Command (write operation)
  • Batch status requirement: Draft
  • Status on success: PendingReview
  • Permissions required: Disbursement Create

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
batchIdlongYesID of the batch
commentstringNoComment

Try It Out​

POST/api/bpm/cmdConfirmDisbursementBatchCommand
Request Body

Response Structure​

{
"success": true,
"data": {
"batchId": 1024,
"status": "PendingReview",
"confirmedAt": "2026-03-08T11:00:00Z"
},
"message": "Batch confirmed and submitted for review"
}