Get Fixed Deposit Account By Phone Number

This returns a customer's fixed deposit account detials

To get a customer's fixed deposit account by phone number you first need to build the complete endpoint by version in the url path then phoneNumber and authToken in the query params. Then you make a get request to this 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/GetFixedDepositAccountByPhoneNumber/version?authToken={{authoken}}&phoneNumber={{phone_number}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/FixedDeposit/GetFixedDepositAccountByPhoneNumber/version?authToken={{authoken}}&phoneNumber={{phone_number}}

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

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

Path Parameters

Name
Type
Description

version*

Int

Current API version

authToken*

Int

Authentication code for this request

phoneNumber*

Int

Customer's phone number

{
    // Response
}

Last updated