Account Enquiry

Account enquiry is used when you want to get all of the information about a customer account.

To get all information on a customer account, you make a post request by passing AccountNo and Authentication code in your request body to account enquire endpoint.

For this request, it is important to note that the payload in the request body are both required for a successful request.

We have live and staging URL, you are advised to use staging URL for development

Production URL

http://api.mybankone.com/thirdpartyapiservice/apiservice/Account/AccountEnquiry

Staging URL

https://staging.mybankone.com/thirdpartyapiservice/apiservice/Account/AccountEnquiry

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

POST https://staging.mybankone.com/thirdpartyapiservice/apiservice/Account/ AccountEnquiry

Request Body

Name
Type
Description

AccountNo*

String

Customer account number

AuthenticationCode*

String

Authentication code for this request

{
 "Name": "okponyia chioma",
 "FirstName": null,
 "LastName": null,
 "Email": null,
 "PhoneNo": null,
 "Nuban": "1100001561",
 "Number": "00010011010000156",
 "ProductCode": "101",
 "PhoneNuber": "09072307496",
 "BVN": "22407294749",
 "AvailableBalance": 11487166.9420,
 "LedgerBalance": 11487166.9420,
 "Status": "Active",
 "Tier": "1",
 "MaximumBalance": 11020501.3260,
 "MaximumDeposit": null,
 "IsSuccessful": true,
 "ResponseMessage": null,
 "PNDStatus": "InActive",
 "LienStatus": "InActive",
 "FreezeStatus": "InActive",
 "RequestStatus": true,
 "ResponseDescription": "Successful",
 "ResponseStatus": null
}

Last updated