Fetch Loan Summary for the Loan Id
GET Loan Summary
This API allows users to retrieve all loan summary information such as " Number Of Installments ", " Installment Amount ", and "Payable Charges" for the respective Loan Id .
URL: {{base_url}}/loan-management/v1/getBasicLoanDetails
Request
Request Type : GET
Authorization: Bearer Token
Key
Data Type
loanId*
Integer
Response: 200
{ "response": true, "data": { "number_of_installments": { "paid": 0, "dues_as_on_date": 0, "net_amount": 0 }, "installment_amount": { "paid": 0, "dues_as_on_date": 0, "net_amount": 0 }, "receivable_charges": { "Storage Charge": { "paid": 0, "dues_as_on_date": 0, "net_amount": 0 }, "Stamp Duty": { "paid": 0, "dues_as_on_date": 0, "net_amount": 0 }, "Total": { "paid": 0, "dues_as_on_date": 0, "net_amount": 0 } }, "payable_charges": { "Processing Fees (Payable to customer)": { "paid": 0, "dues_as_on_date": 0, "net_amount": 0 }, "Excess Amount": { "paid": 0, "dues_as_on_date": 0, "net_amount": 0 }, "Total": { "paid": 0, "dues_as_on_date": 0, "net_amount": 0 } }, "branch_hierarcy": null }, "error": null }