Skip to main content

SetRecommendedLoanAmountCommand

Overview​

Records a recommended loan amount on a loan application during the review process. The recommended amount is advisory — SetFinalLoanAmountCommand sets the binding approved figure.

Command Structure​

{
"cmd": "SetRecommendedLoanAmountCommand",
"data": "{\"loanRequestId\":110,\"amount\":450000,\"comment\":\"Recommending 450k based on salary analysis\"}"
}

Parameters​

ParameterTypeRequiredDescription
loanRequestIdlongYesID of the loan application
amountdecimalYesRecommended amount
commentstringNoJustification notes

Validations​

  • Loan must be in NotInitiated, PendingApproval, or PartialApproval state
  • amount must not exceed the original requested amount
  • amount must meet the product's minimum amount constraint

Response​

{
"ok": true,
"statusCode": "00",
"message": "Recommended loan amount set successfully.",
"outData": {
"LoanRequestId": 110,
"comment": "Recommending 450k based on salary analysis"
}
}