API Documentation
  • 🏡Home
  • Overview
    • 💡What we do
    • ✨Our Features
  • General Guide
    • 🏷️Introduction
    • 📪Test and Go Live
    • 💁Configuration
      • Custormers
        • Create Customer
        • Fetch Loan Customers
        • Fetch Customers
      • Loan Types
        • Fetch Loan Types
        • Loan Reasons
      • Country
        • Get all countries
        • Get states by country Id
      • Branch
        • Create Branch
        • Branches
      • Sales Person
        • Create a Salesperson
        • Get Sales Persons
      • Team
        • Create a Team
        • Get Teams
      • Employers
      • Industries
      • Commission
  • Products Guide
    • 🏛️Loans
      • New Loan Application
      • Activate/De-Activate Auto approval
      • Loan Information
      • Active Loans
      • Repayment Schedule Calculation
      • Create payment entries
      • Spool Repayments Due
      • Repayment Activation File
      • Repayment Activation Information
      • Disburse
    • 🪝Webhooks
      • Webhooks Verification.
      • Verification Steps
Powered by GitBook
On this page

Was this helpful?

  1. General Guide
  2. Configuration
  3. Custormers

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": "OberaCharlesAttah@email.com",
                "bvn": "",
                "personCode": "",
                "createdAt": "2021-06-10T04:08:28.1254284",
                "address": ""
            },
            {
                "personId": 23,
                "firstName": "Fela-Thomas",
                "middleName": "",
                "lastName": "Aderele Peter",
                "dateOfBirth": "",
                "phoneNumber": "",
                "emailAddress": "Fela-ThomasAderelePeter@email.com",
                "bvn": "",
                "personCode": "",
                "createdAt": "2021-06-10T04:08:28.1254",
                "address": ""
            },
            {
                "personId": 22,
                "firstName": "Ziregbe",
                "middleName": "",
                "lastName": " (Techo Works And Industries Limited",
                "dateOfBirth": "",
                "phoneNumber": "",
                "emailAddress": "ZiregbeTejiriTechoWorksAndIndustriesLimited@email.com",
                "bvn": "",
                "personCode": "",
                "createdAt": "2021-06-10T04:08:28.1253733",
                "address": ""
            }
        ]
    },
    "status": true,
    "message": "Success"
}
PreviousCreate CustomerNextFetch Customers

Last updated 1 year ago

Was this helpful?

💁