Bell BAAS
  • Introduction
  • Getting Started
  • REFERENCES
    • Virtual Accounts
      • Create Client (Individual)
      • Create Client (Corporate)
      • Get Client Accounts
      • Name Enquiry (Internal)
      • Get Account Info
    • Bank Transfer
      • Bank List
      • Name Enquiry
      • Transfer
      • Requery Transfer
    • Transactions
      • All Transactions
      • Transaction by Reference
  • WEBHOOK
    • Transaction Notification
Powered by GitBook
On this page
  1. REFERENCES
  2. Virtual Accounts

Get Client Accounts

Create Client

GET /v1/account/clients

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Params

Name
Type
Description

accountType

string

Optional

validityType

string

Optional

status

string

Optional

page

number

Optional

limit

number

Optional

Response

{
    "success": true,
    "data": [
        {
            "metadata": {},
            "id": 1,
            "externalReference": "123456",
            "accountType": "individual",
            "firstName": "John",
            "lastName": "Doe",
            "mobileNumber": "08020304051",
            "accountNumber": "000000018",
            "accountName": "John Doe",
            "accountTier": null,
            "emailAddress": "john1@doe.com",
            "bvn": "22222222221",
            "dateOfBirth": "21/2/2020",
            "businessId": 1,
            "rcNumber": null,
            "incorporationDate": null,
            "createdAt": 1704284832,
            "updatedAt": 1704284832
        }
    ]
}
{
  "success": false,
  "message": "Request Un-Successful",
  "data": null
}
PreviousCreate Client (Corporate)NextName Enquiry (Internal)

Last updated 7 months ago