Skip to main content

Approve Remita Loan Request

Overview​

Approves a pending loan request. The loan must be in PendingApproval status. Upon approval, the loan transitions to Approved status and becomes eligible for mandate activation.

Command Details​

  • Command: ApproveRemitaLoanRequestCommand
  • Type: Command

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
idlongYesID of the loan request to approve
commentstringNoOptional approval comment or note

Try It Out​

POST/api/bpm/cmdApproveRemitaLoanRequestCommand
Request Body

Response Structure​

{
"success": true,
"data": {
"id": 5001,
"status": "Approved",
"approvedBy": "admin@bank.com",
"approvedAt": "2026-03-09T12:00:00Z",
"comment": "Approved after verification"
},
"message": "Loan request approved successfully"
}