Get Bank One Balance Enquiry

This gets the account balance of a customer on bank one

To get a customers account balance on bank one you first need to build the complete url by passing the customer's accountNumber and financialDate to the query params.

Then you make a get request to the complete bank one balance enquiry endpoint.

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/BankOneBalanceEnquiry?accountNumber={{account_number}}&financialDate={{date}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/Account/BankOneBalanceEnquiry?accountNumber={{account_number}}&financialDate={{date}}

Here is an example request with sample payload to the staging endpoint.

GET http://staging.mybankone.com/BankOneWebAPI/api/Account/BankOneBalanceEnquiry

Path Parameters

Name
Type
Description

accountNumber*

String

Customer's account number

financialDate*

String

Date

{
      "Name": "Obasanjo Olusegun",
  "AvailableBalance": 969350,
  "WithdrawableAmount": 859350,
  "Balance2": 0,
  "ReferenceNo": "",
  "IsSuccessful": true,
  "IsCashAssetAccount": false,
  "IsBankOrSuspenseAssetAccount": false,
  "Code": null,
  "Message": null,
  "UniqueLogID": null
}

Last updated