Fetch Loan Charges for Loan Id
GET Loan Charges form Loan Id
This API is used for gathering all fees associated with the loan, such as legal fees, processing fees, and stamp duty.
URL: {{base_url}}/loan-management/v1/getChargesForLoan
Request
Request Type: GET
Authorization: Bearer Token
Key |
Data Type |
loanId* |
Integer |
Response: 200
{ "response": true, "data": [ { "original_amount": 0.0, "paid_amount": 0.0, "charge_id": null, "charge_rate": 0.0, "tax_amount": 0.0, "status": "string", "receivable_payable": null, "is_tax_applicable": false, "pending_amount": 0.0, "waived_amount": 0.0, "source_id": null, "tax_type": null, "amount_without_tax": 0.0, "charge_label": null, "due_date": "01/03/2022", "transaction_date": "01/03/2022", "received_from": "string", "allocate_amount": null, "unique_id": 0 } ], "error": null }
|