Get Active Savings Accounts by CustomerID

This returns a customers active savings account.

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.

We have a Production URL and Staging URL you are advised to use the staging during development.

Production URL

http://api.mybankone.com/BankOneWebAPI/api/Account/GetActiveSavingsAccountsByCustomerID?customerId={{customer_id}}&authToken={{your_authtoken}}&version={{version}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/Account/GetActiveSavingsAccountsByCustomerID?customerId={{customer_id}}&authToken={{your_authtoken}}&version={{version}}

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