Get Fixed Deposit Account By Account Number

This returns a customer's fixed deposit account.

To get a customer's fixed deposit account you first need to build the complete get fixed deposit account endpoint by passing version to the url path then pass authToken and accountNumber to the url query params.

Then you make a get request to this complete 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/FixedDeposit/GetFixedDepositAccountByAccountNumber/version?authToken={{authoken}}&accountNumber={{account_number}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/FixedDeposit/GetFixedDepositAccountByAccountNumber/version?authToken={{authoken}}&accountNumber={{account_number}}

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

GET http://staging.mybankone.com/BankOneWebAPI/api/FixedDeposit/GetFixedDepositAccountByAccountNumber

Path Parameters

Name
Type
Description

version*

Int

Current API version

Query Parameters

Name
Type
Description

authToken*

Int

Authentication code for this request

accountNumber*

Int

Customer's account number

{
    // Response
}

Last updated