Skip to main content

Fetch Loan Charges for Loan Id

Screenshot 2023-04-20 at 3.07.32 AM.png


GET Loan Charges for Loan Id

This API is used for gathering all Charges 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
Query Parameter
Key Data Type
loanId* Integer
* required Param

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
}