Fetch Loan Customers

Gets all the customers with Loan

Gets all the customers with Loan

GET https://<your_business_alias>.lendastack.io/ias/loan/persons

This endpoint returns the list of Loan customers on the application

Query Parameters

Name
Type
Description

pageNumber

int

Specify exactly what page you want to retrieve

pageSize

int

Specify how many records you want to retrieve per page

searchParameter

String

Search customer's by first name, last name or email address

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": 1,
        "pageSize": 20,
        "totalCount": 3,
        "hasPreviousPage": false,
        "hasNextPage": false,
        "items": [
            {
                "personId": 24,
                "firstName": "Obera",
                "middleName": "",
                "lastName": "Charles Attah",
                "dateOfBirth": "",
                "phoneNumber": "",
                "emailAddress": "[email protected]",
                "bvn": "",
                "personCode": "",
                "createdAt": "2021-06-10T04:08:28.1254284",
                "address": ""
            },
            {
                "personId": 23,
                "firstName": "Fela-Thomas",
                "middleName": "",
                "lastName": "Aderele Peter",
                "dateOfBirth": "",
                "phoneNumber": "",
                "emailAddress": "[email protected]",
                "bvn": "",
                "personCode": "",
                "createdAt": "2021-06-10T04:08:28.1254",
                "address": ""
            },
            {
                "personId": 22,
                "firstName": "Ziregbe",
                "middleName": "",
                "lastName": " (Techo Works And Industries Limited",
                "dateOfBirth": "",
                "phoneNumber": "",
                "emailAddress": "[email protected]",
                "bvn": "",
                "personCode": "",
                "createdAt": "2021-06-10T04:08:28.1253733",
                "address": ""
            }
        ]
    },
    "status": true,
    "message": "Success"
}

Last updated

Was this helpful?