Search Transactions

This returns a customer's particular transaction

To search a customers transactions you need to first build the complete request url by passing accountNumber, fromDate, toDate, amount, institutionCode, numberOfItems params to the search transactions endpoint.

Then you make a get request to the complete search transactions 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/Account/SearchTransactions?accountNumber={{account_number}}&amount={{amount}}&fromDate={{date}}&toDate={{date}}&institutionCode={{code}}&numberOfItems={{number_of_items}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/Account/SearchTransactions?accountNumber={{account_number}}&amount={{amount}}&fromDate={{date}}&toDate={{date}}&institutionCode={{code}}&numberOfItems={{number_of_items}}

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

GET http://staging.mybankone.com/BankOneWebAPI/api/Account/SearchTransactions

Query Parameters

Name
Type
Description

accountNumber*

Int

Customer's account number

amount*

Int

Transaction amount

fromDate*

Date

Start date of transaction you want to search for

toDate*

Date

End date of transaction you want to search for

institutionCode*

Int

Institution code gotten after setting up bank one account

numberOfItems*

Int

Number of transactions searching for

{
    // Response
}

Last updated