Name Enquiry

Name Enquiry is used to get details of account number supplied.

To get all details of an account, you make a post request by passing AccountNumber ,BankCode , and Token in your request body to name enquire endpoint.

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

// Live URL
http://api.mybankone.com/thirdpartyapiservice/apiservice/
Transfer/NameEnquiry

POST https://staging.mybankone.com/thirdpartyapiservice/apiservice/Transfer/ NameEnquiry

Request Body

Name
Type
Description

AccountNumber*

String

The customer account number to be validated

Bankcode*

String

Commercial bank sortcode that can be gotten from BillsPayment GetComemrcialBank endpoint response

Token*

String

Authentication Key for the request

{
    "Name": "AKINTOMIWA AKINYEMI",
 "BVN": "22233344455",
 "KYC": "3",
 "IsSuccessful": true,
 "SessionID": "",
 "ResponseMessage": "Successful",
 "DefaultGateWay": "ISW",
 "InstitutionCode": null
}

Last updated