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​
| Field | Type | Required | Description |
|---|---|---|---|
batchId | long | Yes | ID of the batch |
comment | string | No | Comment |
Try It Out​
POST
/api/bpm/cmdConfirmDisbursementBatchCommandRequest Body
Response Structure​
{
"success": true,
"data": {
"batchId": 1024,
"status": "PendingReview",
"confirmedAt": "2026-03-08T11:00:00Z"
},
"message": "Batch confirmed and submitted for review"
}
Related Operations​
- Validate Disbursement Batch — Validate accounts before confirming
- Review Disbursement Batch — Accept the batch review
- Reject Disbursement Review — Reject the batch at review stage
- Cancel Disbursement Batch — Cancel the batch instead