@@ -2199,7 +2199,7 @@ end
21992199
22002200## list_default_categories
22012201
2202- > <CategoriesResponseBody > list_default_categories(user_guid)
2202+ > <CategoriesResponseBody > list_default_categories(user_guid, opts )
22032203
22042204List default categories
22052205
@@ -2219,10 +2219,14 @@ end
22192219
22202220api_instance = MxPlatformRuby ::MxPlatformApi .new
22212221user_guid = ' USR-fa7537f3-48aa-a683-a02a-b18940482f54' # String | The unique id for a `user`.
2222+ opts = {
2223+ page: 1 , # Integer | Specify current page.
2224+ records_per_page: 10 # Integer | Specify records per page.
2225+ }
22222226
22232227begin
22242228 # List default categories
2225- result = api_instance.list_default_categories(user_guid)
2229+ result = api_instance.list_default_categories(user_guid, opts )
22262230 p result
22272231rescue MxPlatformRuby ::ApiError => e
22282232 puts " Error when calling MxPlatformApi->list_default_categories: #{ e } "
@@ -2233,12 +2237,12 @@ end
22332237
22342238This returns an Array which contains the response data, status code and headers.
22352239
2236- > <Array(<CategoriesResponseBody >, Integer, Hash)> list_default_categories_with_http_info(user_guid)
2240+ > <Array(<CategoriesResponseBody >, Integer, Hash)> list_default_categories_with_http_info(user_guid, opts )
22372241
22382242``` ruby
22392243begin
22402244 # List default categories
2241- data, status_code, headers = api_instance.list_default_categories_with_http_info(user_guid)
2245+ data, status_code, headers = api_instance.list_default_categories_with_http_info(user_guid, opts )
22422246 p status_code # => 2xx
22432247 p headers # => { ... }
22442248 p data # => <CategoriesResponseBody>
@@ -2252,6 +2256,8 @@ end
22522256| Name | Type | Description | Notes |
22532257| ---- | ---- | ----------- | ----- |
22542258| ** user_guid** | ** String** | The unique id for a ` ; user` ; . | |
2259+ | ** page** | ** Integer** | Specify current page. | [ optional] |
2260+ | ** records_per_page** | ** Integer** | Specify records per page. | [ optional] |
22552261
22562262### Return type
22572263
@@ -2602,6 +2608,8 @@ end
26022608api_instance = MxPlatformRuby ::MxPlatformApi .new
26032609opts = {
26042610 name: ' chase' , # String | This will list only institutions in which the appended string appears.
2611+ page: 1 , # Integer | Specify current page.
2612+ records_per_page: 10 , # Integer | Specify records per page.
26052613 supports_account_identification: true , # Boolean | Filter only institutions which support account identification.
26062614 supports_account_statement: true , # Boolean | Filter only institutions which support account statements.
26072615 supports_account_verification: true , # Boolean | Filter only institutions which support account verification.
@@ -2640,6 +2648,8 @@ end
26402648| Name | Type | Description | Notes |
26412649| ---- | ---- | ----------- | ----- |
26422650| ** name** | ** String** | This will list only institutions in which the appended string appears. | [ optional] |
2651+ | ** page** | ** Integer** | Specify current page. | [ optional] |
2652+ | ** records_per_page** | ** Integer** | Specify records per page. | [ optional] |
26432653| ** supports_account_identification** | ** Boolean** | Filter only institutions which support account identification. | [ optional] |
26442654| ** supports_account_statement** | ** Boolean** | Filter only institutions which support account statements. | [ optional] |
26452655| ** supports_account_verification** | ** Boolean** | Filter only institutions which support account verification. | [ optional] |
@@ -3823,7 +3833,7 @@ end
38233833
38243834## list_transactions_by_tag
38253835
3826- > <TransactionsResponseBody > list_transactions_by_tag(tag_guid, user_guid)
3836+ > <TransactionsResponseBody > list_transactions_by_tag(tag_guid, user_guid, opts )
38273837
38283838List transactions by tag
38293839
@@ -3844,10 +3854,16 @@ end
38443854api_instance = MxPlatformRuby ::MxPlatformApi .new
38453855tag_guid = ' TAG-aef36e72-6294-4c38-844d-e573e80aed52' # String | The unique id for a `tag`.
38463856user_guid = ' USR-fa7537f3-48aa-a683-a02a-b18940482f54' # String | The unique id for a `user`.
3857+ opts = {
3858+ from_date: ' 2015-09-20' , # String | Filter transactions from this date.
3859+ page: 1 , # Integer | Specify current page.
3860+ records_per_page: 10 , # Integer | Specify records per page.
3861+ to_date: ' 2019-10-20' # String | Filter transactions to this date.
3862+ }
38473863
38483864begin
38493865 # List transactions by tag
3850- result = api_instance.list_transactions_by_tag(tag_guid, user_guid)
3866+ result = api_instance.list_transactions_by_tag(tag_guid, user_guid, opts )
38513867 p result
38523868rescue MxPlatformRuby ::ApiError => e
38533869 puts " Error when calling MxPlatformApi->list_transactions_by_tag: #{ e } "
@@ -3858,12 +3874,12 @@ end
38583874
38593875This returns an Array which contains the response data, status code and headers.
38603876
3861- > <Array(<TransactionsResponseBody >, Integer, Hash)> list_transactions_by_tag_with_http_info(tag_guid, user_guid)
3877+ > <Array(<TransactionsResponseBody >, Integer, Hash)> list_transactions_by_tag_with_http_info(tag_guid, user_guid, opts )
38623878
38633879``` ruby
38643880begin
38653881 # List transactions by tag
3866- data, status_code, headers = api_instance.list_transactions_by_tag_with_http_info(tag_guid, user_guid)
3882+ data, status_code, headers = api_instance.list_transactions_by_tag_with_http_info(tag_guid, user_guid, opts )
38673883 p status_code # => 2xx
38683884 p headers # => { ... }
38693885 p data # => <TransactionsResponseBody>
@@ -3878,6 +3894,10 @@ end
38783894| ---- | ---- | ----------- | ----- |
38793895| ** tag_guid** | ** String** | The unique id for a ` ; tag` ; . | |
38803896| ** user_guid** | ** String** | The unique id for a ` ; user` ; . | |
3897+ | ** from_date** | ** String** | Filter transactions from this date. | [ optional] |
3898+ | ** page** | ** Integer** | Specify current page. | [ optional] |
3899+ | ** records_per_page** | ** Integer** | Specify records per page. | [ optional] |
3900+ | ** to_date** | ** String** | Filter transactions to this date. | [ optional] |
38813901
38823902### Return type
38833903
0 commit comments