Skip to main content

Review Disbursement Batch

Overview​

Accepts the review of a disbursement batch, moving it from PendingReview to Reviewed status. This is the first level of the approval workflow. The reviewer confirms that the batch contents are correct and appropriate.

Command Details​

  • Command: ReviewDisbursementBatchCommand
  • Type: Command (write operation)
  • Batch status requirement: PendingReview
  • Status on success: Reviewed
  • Permissions required: Disbursement Review

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
batchIdlongYesID of the batch
commentstringNoReview comment

Try It Out​

POST/api/bpm/cmdReviewDisbursementBatchCommand
Request Body

Response Structure​

{
"success": true,
"data": {
"batchId": 1024,
"status": "Reviewed",
"reviewedBy": "jane.reviewer@bank.com",
"reviewedAt": "2026-03-08T12:00:00Z",
"comment": "Reviewed and forwarded for approval"
},
"message": "Batch review accepted"
}