Get Active Savings Accounts by CustomerID
This returns a customers active savings account.
This is a Core API
To get a customers active savings account you need to first build the complete url by by passing authtoken
,version
, and customerId
to the url query params.
Then you make a get request to the complete get customer ID url.
Production URL
Staging URL
Here is an example request with sample payload to the staging endpoint
GET
http://api.mybankone.com/BankOneWebAPI/api/Account/GetActiveSavingsAccountsByCustomerID
Query Parameters
Name
Type
Description
customerId*
Int
Customer's ID
authToken*
Int
Institution code gotten after setting up on bank one
version*
Int
Current API version present one is 2
[
{
"Name": "BURNA BOY",
"Number": "08830011010001046",
"NUBAN": "1100010368",
"ProductName": "GRAMMY ACCOUNT",
"CustomerID": "001036",
"Balance": {
"LedgerBalance": 29300,
"AvailableBalance": 29300,
"WithdrawableAmount": 0
},
"Status": 0,
"AccountTier": "3",
"DepositCategory": "VoluntarySavingsDeposits"
},
{
"Name": "BURNA BOY",
"Number": "07730011022001056",
"NUBAN": "1200010361",
"ProductName": "NAIJA WALLET",
"CustomerID": "001036",
"Balance": {
"LedgerBalance": 0,
"AvailableBalance": 0,
"WithdrawableAmount": 0
},
"Status": 0,
"AccountTier": "3",
"DepositCategory": "VoluntarySavingsDeposits"
}
]
Last updated