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"
}

Last updated

Was this helpful?