Skip to main content

Reject Remita Loan Request

Overview​

Rejects a pending loan request. The loan must be in PendingApproval status. The rejection comment is recorded for audit purposes.

Command Details​

  • Command: RejectRemitaLoanRequestCommand
  • Type: Command

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
idlongYesID of the loan request to reject
commentstringNoReason for rejecting the loan request

Try It Out​

POST/api/bpm/cmdRejectRemitaLoanRequestCommand
Request Body

Response Structure​

{
"success": true,
"data": {
"id": 5001,
"status": "Rejected",
"rejectedBy": "admin@bank.com",
"rejectedAt": "2026-03-09T12:00:00Z",
"comment": "Insufficient documentation"
},
"message": "Loan request rejected"
}