Skip to main content

Reject Disbursement Review

Overview​

Rejects a disbursement batch at the review stage. The reviewer determines that the batch requires corrections and sends it back. A reason for the rejection must be provided.

Command Details​

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

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
batchIdlongYesID of the batch
commentstringYesRejection reason

Try It Out​

POST/api/bpm/cmdRejectDisbursementReviewCommand
Request Body

Response Structure​

{
"success": true,
"data": {
"batchId": 1024,
"status": "Rejected",
"rejectedBy": "jane.reviewer@bank.com",
"rejectedAt": "2026-03-08T12:15:00Z",
"comment": "Duplicate entries found in batch"
},
"message": "Batch review rejected"
}