Active Loans

Get detailed information on customers loans and repayment schedules

GET https://<your_business_alias>.lendastack.io/loan/loans

This endpoint spool list of loans

Query Parameters

Name
Type
Description

pageSize

Int

Specify how many records you want to retrieve per page

pageNumber

Int

Specify exactly what page you want to retrieve

searchParameter

String

Keyword for searching loans by their content (Example. Search by loan application code)

Headers

Name
Type
Description

Authentication*

String

The encoded combination of your public key and secret key (see the Test and go live section of the docs)

{
    "data": {
        "pageNumber": 1,
        "totalPages": 15,
        "pageSize": 20,
        "totalCount": 298,
        "hasPreviousPage": false,
        "hasNextPage": true,
        "items": [
            {
                "loanId": 1208,
                "applicationCode": "AP0001208",
                "fees": 0,
                "identifier": "yBI2DwM1c",
                "loanAmount": 200000,
                "loanTenor": 4,
                "branchName": "Head Quarter",
                "loanTypeName": "Personal - 4.5",
                "customerName": "Segun Ola",
                "isCustomerBvnValidated": false,
                "personId": 1071,
                "createdAt": "2023-03-25T20:17:10.3029398",
                "amountRepayed": 0,
                "totalAmountToBeRepayed": 0,
                "loanBalance": 0,
                "amountOutstanding": 0,
                "amountDisbursed": 0,
                "repaymentScheduleType": "Month"
            },
            {
                "loanId": 1202,
                "loanCode": "LN0001202",
                "applicationCode": "AP0001202",
                "fees": 0,
                "identifier": "qhIimEENP",
                "loanAmount": 15000000,
                "loanTenor": 1,
                "branchName": "Portharcourt",
                "loanTypeName": "PL/NEW_01_2321",
                "customerName": "Okhae Ebenezer Ehireme",
                "isCustomerBvnValidated": false,
                "personId": 1064,
                "createdAt": "2023-03-05T03:24:51.1197544",
                "amountRepayed": 0,
                "totalAmountToBeRepayed": 0,
                "loanBalance": 0,
                "amountOutstanding": 0,
                "amountDisbursed": 0,
                "repaymentScheduleType": "Month"
            },
            {
                "loanId": 1201,
                "loanCode": "LN0001201",
                "applicationCode": "AP0001201",
                "fees": 0,
                "identifier": "aDFf7IIkq",
                "loanAmount": 15000000,
                "loanTenor": 1,
                "branchName": "Portharcourt",
                "loanTypeName": "PL/RENEWAL_01_2320",
                "customerName": "Korodo Tokunbo Najeemdeen (TNA  Nigeria Li",
                "isCustomerBvnValidated": false,
                "personId": 1063,
                "createdAt": "2023-03-05T03:24:51.1004839",
                "amountRepayed": 0,
                "totalAmountToBeRepayed": 0,
                "loanBalance": 0,
                "amountOutstanding": 0,
                "amountDisbursed": 0,
                "repaymentScheduleType": "Month"
            },
            {
                "loanId": 1200,
                "loanCode": "LN0001200",
                "applicationCode": "AP0001200",
                "fees": 0,
                "identifier": "Gdtg4Q0T4",
                "loanAmount": 150000,
                "loanTenor": 12,
                "branchName": "Portharcourt",
                "loanTypeName": "PL/NEW_01_2319",
                "customerName": "Agarawu Shakirudeen Abolore",
                "isCustomerBvnValidated": false,
                "personId": 1062,
                "createdAt": "2023-03-05T03:24:51.0764062",
                "amountRepayed": 0,
                "totalAmountToBeRepayed": 0,
                "loanBalance": 0,
                "amountOutstanding": 0,
                "amountDisbursed": 0,
                "repaymentScheduleType": "Month"
            },
            {
                "loanId": 1199,
                "loanCode": "LN0001199",
                "applicationCode": "AP0001199",
                "fees": 0,
                "identifier": "cZ0CdM4TX",
                "loanAmount": 5000000,
                "loanTenor": 6,
                "branchName": "Portharcourt",
                "loanTypeName": "PL/NEW_01_2318",
                "customerName": "Enwefa Nkechukwuku Uzoma",
                "isCustomerBvnValidated": false,
                "personId": 1061,
                "createdAt": "2023-03-05T03:24:51.0575048",
                "amountRepayed": 0,
                "totalAmountToBeRepayed": 0,
                "loanBalance": 0,
                "amountOutstanding": 0,
                "amountDisbursed": 0,
                "repaymentScheduleType": "Month"
            },
            {
                "loanId": 1198,
                "loanCode": "LN0001198",
                "applicationCode": "AP0001198",
                "fees": 0,
                "identifier": "mS9FKqrdG",
                "loanAmount": 5000000,
                "loanTenor": 1,
                "branchName": "Portharcourt",
                "loanTypeName": "LPO/ROLL-OVER_01_2317",
                "customerName": "Fasesan Yetunde Morenike (Ellabis Enterpris",
                "isCustomerBvnValidated": false,
                "personId": 1060,
                "createdAt": "2023-03-05T03:24:51.0384265",
                "amountRepayed": 0,
                "totalAmountToBeRepayed": 0,
                "loanBalance": 0,
                "amountOutstanding": 0,
                "amountDisbursed": 0,
                "repaymentScheduleType": "Month"
            }
        ]
    },
    "status": true,
    "message": "Success"
}

Last updated

Was this helpful?