This API fetches detailed account information for a specific client, including account type, balance, status, and other relevant data.
Path Parameter#
Field Name | Type | Required | Description |
---|
nuban | string | true | NUBAN refers to the client's account number. |
Response Table#
Field Name | Type | Description |
---|
id | integer | Unique identifier of the account. |
firstname | string | First name of the account holder. |
lastname | string | Last name of the account holder. |
nuban | string | Generated NUBAN (bank account number). |
currentBalance | float | Current balance in the account. |
availableBalance | float | Available balance in the account. |
accountName | string | Full name of the account holder. |
productName | string | Name of the product associated with the account. |
productShortName | string | Unique abbreviation of the product name. |
productCurrency | string | Currency denomination of the account. |
coreBankingId | integer | Unique identifier in the core banking system. |
Request samples
curl --location --request GET '/core/account/'
Responses
application/json {
"id": 1,
"firstname": "Mohammed",
"lastname": "Olateju",
"nuban": "0000000017",
"currentBalance": 48051,
"availableBalance": 42051,
"accountName": "Mohammed Olateju",
"productName": "TP Gateway Product",
"productShortName": "HPAY",
"productCurrency": "NGN",
"coreBankingId": 1
}
Modified at 2025-03-19 15:01:55