Get Customer by Account Number

This returns customers details

To get a particular customer details, you first build the complete get customer by account number endpoint by passing version number, authToken and account number to the URL path.

Then you make a get request to the complete get customer by account number 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/Customer/GetByAccountNo/version?accountNumber={{your_accountnumber}}&authToken={{your_authtoken}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/Customer/GetByAccountNo/version?accountNumber={{your_accountnumber}}&authToken={{your_authtoken}}

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

GET http://staging.mybankone.com/BankOneWebAPI/api/Customer/GetByAccountNo

Path Parameters

Name
Type
Description

version*

Int

Current API version

Query Parameters

Name
Type
Description

accountNumber*

Int

Customers account number

authToken*

Int

Authentication for this request

{
    // Response
}

Last updated