Get Transactions
This gets all customers transactions
To get a customers transactions you need to first build the complete request url by passing accountNumber, fromDate, toDate, institutionCode, numberOfItems params to the get transactions endpoint.
Then you make a get request to the get complete transactions endpoint.
We have a Production URL and Staging URL you are advised to use the staging during development.
Production URL
Staging URL
Here is an example request with sample payload to the staging endpoint.
GET http://staging.mybankone.com/BankOneWebAPI/api/Account/GetTransactions
Query Parameters
accountNumber*
Int
Customer's account number
fromDate*
Date
Start date of transactions
toDate*
Date
End date of transactions
institutionCode*
Int
Institution code gotten after setting up bank one account
numberOfItems
Int
Number of transactions you want to return
{
// Response
}Last updated