Get Bank One Balance Enquiry
This gets the account balance of a customer on bank one
This is a Core API
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.
Production URL
Staging URL
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