Skip to main content

Process Remita Loan Disbursement

Overview​

Triggers the core banking fund transfer to disburse the loan amount to the borrower's account. This command initiates the actual fund movement through the core banking system after the loan has been approved and the mandate activated.

Command Details​

  • Command: ProcessRemitaDisburseLoanCommand
  • Type: Command

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
idlongYesID of the loan request to disburse
commentstringNoOptional comment for disbursement processing

Try It Out​

POST/api/bpm/cmdProcessRemitaDisburseLoanCommand
Request Body

Response Structure​

{
"success": true,
"data": {
"id": 5001,
"disbursedAmount": 5000000.00,
"transactionReference": "TXN-2026-03-09-00421",
"coreBankingStatus": "Completed",
"disbursedAt": "2026-03-09T14:00:00Z"
},
"message": "Loan disbursement processed successfully"
}