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​
| Parameter | Type | Required | Description |
|---|---|---|---|
loanRequestId | long | Yes | ID of the loan application |
amount | decimal | Yes | Recommended amount |
comment | string | No | Justification notes |
Validations​
- Loan must be in
NotInitiated,PendingApproval, orPartialApprovalstate amountmust not exceed the original requested amountamountmust 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"
}
}