Docs
  • Home
  • Introduction
  • Loans
    • New loan application
    • Activate/De-Activate Auto approval
    • Loan Information
    • Active loans
    • Repayment Schedule Calculation
    • Create payment entries
    • Spool repayments due
    • Repayment Activation
      • Remita
    • Auto Disburse
  • Configuration Helpers
  • Create Person
  • Persons
  • Search Customer
  • Loan Types
  • Branches
  • Salesperson
  • Employer & Industry
    • Industries
  • Web-hook Integration
    • Industries
  • Loan Reasons
  • Guides
    • Test and go live
Powered by GitBook
On this page

Was this helpful?

Branches

Get Information of all setup branches on the system

Branches

GET https://<your_business_alias>.lenda.ng/ias/branch/branches

This endpoint fetches branches on the system.

Query Parameters

Name
Type
Description

string

Search by branch name

pageSize

integer

Specify how many records you want to retrieve per page

pageNumber

integer

Specify exactly what page you want to retrieve

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": 2,
    "pageSize": 2,
    "totalCount": 4,
    "hasPreviousPage": false,
    "hasNextPage": true,
    "items": [
      {
        "branchId": 1,
        "branchName": "Head Quarter",
        "createdAt": "2020-06-24T07:22:14.3854364",
        "state": "Abia",
        "address": "",
        "status": 0,
        "members": 8
      },
      {
        "branchId": 2,
        "branchName": "Test Branch 1",
        "createdAt": "2020-07-14T08:07:45.7660483",
        "state": "Adamawa",
        "address": "",
        "status": 0,
        "members": 1
      }
    ]
  },
  "status": true,
  "message": "Success"
}

PreviousLoan TypesNextSalesperson

Last updated 3 years ago

Was this helpful?