We are using cookies in our website in order to offer better service to you. You allow us to use cookies by continuing to use our internet website. You can reach the detailed information on cookies from our Privacy Policy and Cookies Policy.
X
Home > Api Products > Loan Reconciliations

Loan Reconciliations

Description

​This API returns list of disbursed credit details.

How it Works

Parameters

disbursement_date : String
page: Integer
row_count: Integer

Sample Request

GET {API_HOST}/api/v1/loan-reconciliations?disbursement_date=2019-10-22&row_count=5&page=1

Headers:
X-IBM-client-id: {YOUR_CLEINT_ID} 
X-IBM-client-secret: {YOUR_CLEINT_SECRET} 
Content-Type: application/json


Sample Response

{

   "data": [

    {

      "meta": {

        "page_count": 1,

        "current_page": 1,

        "total_count": 2,

        "total_amount": “14000.00"

      },

      "loans": [

        {

            "company_code": "104",

            "account_number": "4352-5566330",

            "amount": "5000.00",

            "disbursement_date": "2018-10-22T09:32:41Z",

            "application_id": "525917",

            "order_number": "23354"

        },

        {

            "company_code": "104",

            "account_number": "4352-5566330",

            "amount": "9000.00",

            "disbursement_date": "2018-10-22T11:54:13Z",

            "application_id": "525957",

            "order_number": "23354"

        }

      ]

    }

  ]

}