@@ -2133,7 +2133,7 @@ Name | Type | Description | Notes
21332133
21342134<a name =" listDefaultCategories " ></a >
21352135# ** listDefaultCategories**
2136- > CategoriesResponseBody listDefaultCategories(userGuid)
2136+ > CategoriesResponseBody listDefaultCategories(userGuid, page, recordsPerPage )
21372137
21382138List default categories
21392139
@@ -2161,8 +2161,10 @@ public class Example {
21612161
21622162 MxPlatformApi apiInstance = new MxPlatformApi (defaultClient);
21632163 String userGuid = " USR-fa7537f3-48aa-a683-a02a-b18940482f54" ; // String | The unique id for a `user`.
2164+ Integer page = 1 ; // Integer | Specify current page.
2165+ Integer recordsPerPage = 10 ; // Integer | Specify records per page.
21642166 try {
2165- CategoriesResponseBody result = apiInstance. listDefaultCategories(userGuid);
2167+ CategoriesResponseBody result = apiInstance. listDefaultCategories(userGuid, page, recordsPerPage );
21662168 System . out. println(result);
21672169 } catch (ApiException e) {
21682170 System . err. println(" Exception when calling MxPlatformApi#listDefaultCategories" );
@@ -2180,6 +2182,8 @@ public class Example {
21802182Name | Type | Description | Notes
21812183------------- | ------------- | ------------- | -------------
21822184 ** userGuid** | ** String** | The unique id for a ` ; user` ; . |
2185+ ** page** | ** Integer** | Specify current page. | [ optional]
2186+ ** recordsPerPage** | ** Integer** | Specify records per page. | [ optional]
21832187
21842188### Return type
21852189
@@ -2497,7 +2501,7 @@ Name | Type | Description | Notes
24972501
24982502<a name =" listInstitutions " ></a >
24992503# ** listInstitutions**
2500- > InstitutionsResponseBody listInstitutions(name, supportsAccountIdentification, supportsAccountStatement, supportsAccountVerification, supportsTransactionHistory)
2504+ > InstitutionsResponseBody listInstitutions(name, page, recordsPerPage, supportsAccountIdentification, supportsAccountStatement, supportsAccountVerification, supportsTransactionHistory)
25012505
25022506List institutions
25032507
@@ -2525,12 +2529,14 @@ public class Example {
25252529
25262530 MxPlatformApi apiInstance = new MxPlatformApi (defaultClient);
25272531 String name = " chase" ; // String | This will list only institutions in which the appended string appears.
2532+ Integer page = 1 ; // Integer | Specify current page.
2533+ Integer recordsPerPage = 10 ; // Integer | Specify records per page.
25282534 Boolean supportsAccountIdentification = true ; // Boolean | Filter only institutions which support account identification.
25292535 Boolean supportsAccountStatement = true ; // Boolean | Filter only institutions which support account statements.
25302536 Boolean supportsAccountVerification = true ; // Boolean | Filter only institutions which support account verification.
25312537 Boolean supportsTransactionHistory = true ; // Boolean | Filter only institutions which support extended transaction history.
25322538 try {
2533- InstitutionsResponseBody result = apiInstance. listInstitutions(name, supportsAccountIdentification, supportsAccountStatement, supportsAccountVerification, supportsTransactionHistory);
2539+ InstitutionsResponseBody result = apiInstance. listInstitutions(name, page, recordsPerPage, supportsAccountIdentification, supportsAccountStatement, supportsAccountVerification, supportsTransactionHistory);
25342540 System . out. println(result);
25352541 } catch (ApiException e) {
25362542 System . err. println(" Exception when calling MxPlatformApi#listInstitutions" );
@@ -2548,6 +2554,8 @@ public class Example {
25482554Name | Type | Description | Notes
25492555------------- | ------------- | ------------- | -------------
25502556 ** name** | ** String** | This will list only institutions in which the appended string appears. | [ optional]
2557+ ** page** | ** Integer** | Specify current page. | [ optional]
2558+ ** recordsPerPage** | ** Integer** | Specify records per page. | [ optional]
25512559 ** supportsAccountIdentification** | ** Boolean** | Filter only institutions which support account identification. | [ optional]
25522560 ** supportsAccountStatement** | ** Boolean** | Filter only institutions which support account statements. | [ optional]
25532561 ** supportsAccountVerification** | ** Boolean** | Filter only institutions which support account verification. | [ optional]
@@ -3675,7 +3683,7 @@ Name | Type | Description | Notes
36753683
36763684<a name =" listTransactionsByTag " ></a >
36773685# ** listTransactionsByTag**
3678- > TransactionsResponseBody listTransactionsByTag(tagGuid, userGuid)
3686+ > TransactionsResponseBody listTransactionsByTag(tagGuid, userGuid, fromDate, page, recordsPerPage, toDate )
36793687
36803688List transactions by tag
36813689
@@ -3704,8 +3712,12 @@ public class Example {
37043712 MxPlatformApi apiInstance = new MxPlatformApi (defaultClient);
37053713 String tagGuid = " TAG-aef36e72-6294-4c38-844d-e573e80aed52" ; // String | The unique id for a `tag`.
37063714 String userGuid = " USR-fa7537f3-48aa-a683-a02a-b18940482f54" ; // String | The unique id for a `user`.
3715+ String fromDate = " 2015-09-20" ; // String | Filter transactions from this date.
3716+ Integer page = 1 ; // Integer | Specify current page.
3717+ Integer recordsPerPage = 10 ; // Integer | Specify records per page.
3718+ String toDate = " 2019-10-20" ; // String | Filter transactions to this date.
37073719 try {
3708- TransactionsResponseBody result = apiInstance. listTransactionsByTag(tagGuid, userGuid);
3720+ TransactionsResponseBody result = apiInstance. listTransactionsByTag(tagGuid, userGuid, fromDate, page, recordsPerPage, toDate );
37093721 System . out. println(result);
37103722 } catch (ApiException e) {
37113723 System . err. println(" Exception when calling MxPlatformApi#listTransactionsByTag" );
@@ -3724,6 +3736,10 @@ Name | Type | Description | Notes
37243736------------- | ------------- | ------------- | -------------
37253737 ** tagGuid** | ** String** | The unique id for a ` ; tag` ; . |
37263738 ** userGuid** | ** String** | The unique id for a ` ; user` ; . |
3739+ ** fromDate** | ** String** | Filter transactions from this date. | [ optional]
3740+ ** page** | ** Integer** | Specify current page. | [ optional]
3741+ ** recordsPerPage** | ** Integer** | Specify records per page. | [ optional]
3742+ ** toDate** | ** String** | Filter transactions to this date. | [ optional]
37273743
37283744### Return type
37293745
0 commit comments