Method: UpBankingClient::TransactionsApi#accounts_account_id_transactions_get
- Defined in:
- lib/up_banking/api/transactions_api.rb
#accounts_account_id_transactions_get(account_id, opts = {}) ⇒ ListTransactionsResponse
List transactions by account Retrieve a list of all transactions for a specific account. The returned list is [paginated](#pagination) and can be scrolled by following the ‘next` and `prev` links where present. To narrow the results to a specific date range pass one or both of `filter` and `filter` in the query string. These filter parameters **should not** be used for pagination. Results are ordered newest first to oldest last.
33 34 35 36 |
# File 'lib/up_banking/api/transactions_api.rb', line 33 def accounts_account_id_transactions_get(account_id, opts = {}) data, _status_code, _headers = accounts_account_id_transactions_get_with_http_info(account_id, opts) data end |