You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
||[transactions.get_transactions_by_account(budget_id, account_id)](https://github.com/ynab/ynab-sdk-ruby/blob/master/docs/TransactionsApi.md#get_transactions_by_account)| Returns all transactions for a specified account |
70
70
||[transactions.get_transactions_by_category(budget_id, category_id)](https://github.com/ynab/ynab-sdk-ruby/blob/master/docs/TransactionsApi.md#get_transactions_by_category)| Returns all transactions for a specified category |
71
+
||[transactions.get_transactions_by_month(budget_id, month)](https://github.com/ynab/ynab-sdk-ruby/blob/master/docs/TransactionsApi.md#get_transactions_by_month)| Returns all transactions for a specified month |
71
72
||[transactions.get_transaction_by_id(budget_id, transaction_id)](https://github.com/ynab/ynab-sdk-ruby/blob/master/docs/TransactionsApi.md#get_transaction_by_id)| Returns a single transaction |
72
73
||[transactions.create_transaction(budget_id, data)](https://github.com/ynab/ynab-sdk-ruby/blob/master/docs/TransactionsApi.md#create_transaction)| Creates a single transaction |
Copy file name to clipboardExpand all lines: docs/TransactionsApi.md
+24
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ All URIs are relative to *https://api.ynab.com/v1*
10
10
|[**get_transactions**](TransactionsApi.md#get_transactions)|**GET** /budgets/{budget_id}/transactions | List transactions |
11
11
|[**get_transactions_by_account**](TransactionsApi.md#get_transactions_by_account)|**GET** /budgets/{budget_id}/accounts/{account_id}/transactions | List account transactions |
12
12
|[**get_transactions_by_category**](TransactionsApi.md#get_transactions_by_category)|**GET** /budgets/{budget_id}/categories/{category_id}/transactions | List category transactions, excluding any pending transactions |
13
+
|[**get_transactions_by_month**](TransactionsApi.md#get_transactions_by_month)|**GET** /budgets/{budget_id}/months/{month}/transactions | List transactions in month, excluding any pending transactions |
13
14
|[**get_transactions_by_payee**](TransactionsApi.md#get_transactions_by_payee)|**GET** /budgets/{budget_id}/payees/{payee_id}/transactions | List payee transactions, excluding any pending transactions |
List transactions in month, excluding any pending transactions
153
+
154
+
Returns all transactions for a specified month
155
+
156
+
### Parameters
157
+
158
+
| Name | Type | Description | Notes |
159
+
| ---- | ---- | ----------- | ----- |
160
+
|**budget_id**|**String**| The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.ynab.com/#oauth-default-budget).||
161
+
|**month**|**String**| The budget month in ISO format (e.g. 2016-12-01) (\"current\" can also be used to specify the current calendar month (UTC)) ||
162
+
|**since_date**|**Date**| If specified, only transactions on or after this date will be included. The date should be ISO formatted (e.g. 2016-12-30). |[optional]|
163
+
|**type**|**String**| If specified, only transactions of the specified type will be included. \"uncategorized\" and \"unapproved\" are currently supported. |[optional]|
164
+
|**last_knowledge_of_server**|**Integer**| The starting server knowledge. If provided, only entities that have changed since `last_knowledge_of_server` will be included. |[optional]|
# List transactions in month, excluding any pending transactions
460
+
# Returns all transactions for a specified month
461
+
# @param budget_id [String] The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.ynab.com/#oauth-default-budget).
462
+
# @param month [String] The budget month in ISO format (e.g. 2016-12-01) (\"current\" can also be used to specify the current calendar month (UTC))
463
+
# @param [Hash] opts the optional parameters
464
+
# @option opts [Date] :since_date If specified, only transactions on or after this date will be included. The date should be ISO formatted (e.g. 2016-12-30).
465
+
# @option opts [String] :type If specified, only transactions of the specified type will be included. \"uncategorized\" and \"unapproved\" are currently supported.
466
+
# @option opts [Integer] :last_knowledge_of_server The starting server knowledge. If provided, only entities that have changed since `last_knowledge_of_server` will be included.
# List transactions in month, excluding any pending transactions
474
+
# Returns all transactions for a specified month
475
+
# @param budget_id [String] The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.ynab.com/#oauth-default-budget).
476
+
# @param month [String] The budget month in ISO format (e.g. 2016-12-01) (\"current\" can also be used to specify the current calendar month (UTC))
477
+
# @param [Hash] opts the optional parameters
478
+
# @option opts [Date] :since_date If specified, only transactions on or after this date will be included. The date should be ISO formatted (e.g. 2016-12-30).
479
+
# @option opts [String] :type If specified, only transactions of the specified type will be included. \"uncategorized\" and \"unapproved\" are currently supported.
480
+
# @option opts [Integer] :last_knowledge_of_server The starting server knowledge. If provided, only entities that have changed since `last_knowledge_of_server` will be included.
481
+
# @return [Array<(HybridTransactionsResponse, Integer, Hash)>] HybridTransactionsResponse data, response status code and response headers
# List payee transactions, excluding any pending transactions
460
538
# Returns all transactions for a specified payee
461
539
# @param budget_id [String] The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.ynab.com/#oauth-default-budget).
0 commit comments