Skip to main content

Cancel Remita Loan Request

Overview​

Cancels a loan request. The loan must be in Created or PendingApproval status. Once cancelled, the loan request cannot be reactivated.

Command Details​

  • Command: CancelRemitaLoanRequestCommand
  • Type: Command

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
idlongYesID of the loan request to cancel
commentstringNoReason for cancellation

Try It Out​

POST/api/bpm/cmdCancelRemitaLoanRequestCommand
Request Body

Response Structure​

{
"success": true,
"data": {
"id": 5001,
"status": "Cancelled",
"cancelledAt": "2026-03-09T15:00:00Z",
"comment": "Customer withdrew application"
},
"message": "Loan request cancelled successfully"
}