Skip to main content

Disburse Remita Loan

Overview​

Disburses the loan amount to the borrower's account. The loan must be in MandateActive status (i.e., the salary deduction mandate must already be activated). Upon successful disbursement, the loan transitions to Disbursed status.

Command Details​

  • Command: DisburseRemitaLoanCommand
  • Type: Command

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
idlongYesID of the loan request to disburse

Try It Out​

POST/api/bpm/cmdDisburseRemitaLoanCommand
Request Body

Response Structure​

{
"success": true,
"data": {
"id": 5001,
"status": "Disbursed",
"disbursedAmount": 5000000.00,
"transactionReference": "TXN-2026-03-09-00421",
"disbursedAt": "2026-03-09T14:00:00Z"
},
"message": "Loan disbursed successfully"
}