Skip to main content

Fetch Accounting Ledger for Loan Id

Screenshot 2023-04-20 at 2.47.05 PM.png


GET Accounting Ledger for Loan Id

This API is used for gathering Accounting Ledger / Account Statement for the specified Loan Id which Included Premium Amount, Fees, Advance against disbursement and more.

URL: {{base_url}}/loan-management/v1/getLedger

Request
Request Type: GET
Authorization: Bearer Token
Query Parameter
Key Data Type
loanId* Integer
* required Param

Response: 200

{
   "response": true,
   "data": [
      {
         "transaction_date": "2023-04-15",
         "transaction_value_date": "2023-04-15",
         "voucher_header_id": 0,
         "transaction_name": "string",
         "coa_code": "string",
         "coa_name": "string",
         "debit_amount": 0,
         "credit_amount": 0.0,
         "loan_account_number": "string",
         "voucher_type": "string",
         "voucher_details_id": 0
      }
   ],
   "error": null
}