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. Branch

Branches

Get Information of all setup branches on the system

Get Information of all setup branches on the system

GET https://<your_business_alias>.lendastack.io/ias/branch/branches

This endpoint fetches branches on the system.

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": 9,
        "hasPreviousPage": false,
        "hasNextPage": false,
        "items": [
            {
                "branchId": 1,
                "branchName": "Head Quarter",
                "createdAt": "2021-06-07T09:36:06.7740356",
                "state": "Lagos",
                "status": "Active",
                "members": 79
            },
            {
                "branchId": 3,
                "branchName": "Lekki ",
                "createdAt": "2021-11-30T07:19:43.8317541",
                "state": "Lagos",
                "address": "45, ert avenue",
                "status": "Active",
                "members": 12
            },
            {
                "branchId": 4,
                "branchName": "Yaba",
                "createdAt": "2021-11-30T07:20:21.3480782",
                "state": "Lagos",
                "address": "32, new avenu",
                "status": "Active",
                "members": 11
            },
            {
                "branchId": 5,
                "branchName": "Ikeja",
                "createdAt": "2021-11-30T07:25:53.6891305",
                "state": "Lagos",
                "address": "LAgos",
                "status": "Active",
                "members": 3
            },
            {
                "branchId": 6,
                "branchName": "Portharcourt",
                "createdAt": "2022-01-04T11:08:53.2310707",
                "state": "Rivers",
                "address": "portville",
                "status": "Active",
                "members": 96
            },
            {
                "branchId": 8,
                "branchName": "Ikota",
                "createdAt": "2022-05-06T12:27:03.5698529",
                "state": "Delta",
                "address": "120, Oceans floor33",
                "status": "Active",
                "members": 4
            },
            {
                "branchId": 10,
                "branchName": "TempBranch",
                "createdAt": "2022-12-12T08:21:52.4386162",
                "state": "Abuja FCT",
                "address": "tempAddressss",
                "status": "Active",
                "members": 0
            },
            {
                "branchId": 11,
                "branchName": "UpdatedTempBranchh",
                "createdAt": "2022-12-12T08:53:05.9875592",
                "state": "Abuja FCT",
                "address": "tempAddressss",
                "status": "Active",
                "members": 0
            },
            {
                "branchId": 12,
                "branchName": "Ugbowo",
                "createdAt": "2022-12-15T17:28:48.0503468",
                "state": "Edo",
                "address": "uniben ",
                "status": "Active",
                "members": 0
            }
        ]
    },
    "status": true,
    "message": "Success"
}
PreviousCreate BranchNextSales Person

Last updated 1 year ago

Was this helpful?

💁