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
String memberGuid ="MBR-7c6f361b-e582-15b6-60c0-358f12466b4b"; // String | The unique id for a `member`.
6150
6150
String userGuid ="USR-fa7537f3-48aa-a683-a02a-b18940482f54"; // String | The unique id for a `user`.
6151
6151
String clientRedirectUrl ="https://mx.com"; // String | A URL that MX will redirect to at the end of OAuth with additional query parameters. Only available with `referral_source=APP`.
6152
+
String enableApp2app ="false"; // String | This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. This setting is not persistent.
6152
6153
String referralSource ="APP"; // String | Must be either `BROWSER` or `APP` depending on the implementation. Defaults to `BROWSER`.
6153
6154
Boolean skipAggregation =false; // Boolean | Setting this parameter to `true` will prevent the member from automatically aggregating after being redirected from the authorization page.
6154
6155
String uiMessageWebviewUrlScheme ="mx"; // String | A scheme for routing the user back to the application state they were previously in. Only available with `referral_source=APP`.
6155
6156
try {
6156
-
OAuthWindowResponseBody result = apiInstance.requestOAuthWindowURI(memberGuid, userGuid, clientRedirectUrl, referralSource, skipAggregation, uiMessageWebviewUrlScheme);
6157
+
OAuthWindowResponseBody result = apiInstance.requestOAuthWindowURI(memberGuid, userGuid, clientRedirectUrl, enableApp2app, referralSource, skipAggregation, uiMessageWebviewUrlScheme);
6157
6158
System.out.println(result);
6158
6159
} catch (ApiException e) {
6159
6160
System.err.println("Exception when calling MxPlatformApi#requestOAuthWindowURI");
@@ -6173,6 +6174,7 @@ Name | Type | Description | Notes
6173
6174
**memberGuid** | **String**| The unique id for a `member`. |
6174
6175
**userGuid** | **String**| The unique id for a `user`. |
6175
6176
**clientRedirectUrl** | **String**| A URL that MX will redirect to at the end of OAuth with additional query parameters. Only available with `referral_source=APP`. | [optional]
6177
+
**enableApp2app** | **String**| This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. This setting is not persistent. | [optional]
6176
6178
**referralSource** | **String**| Must be either `BROWSER` or `APP` depending on the implementation. Defaults to `BROWSER`. | [optional]
6177
6179
**skipAggregation** | **Boolean**| Setting this parameter to `true` will prevent the member from automatically aggregating after being redirected from the authorization page. | [optional]
6178
6180
**uiMessageWebviewUrlScheme** | **String**| A scheme for routing the user back to the application state they were previously in. Only available with `referral_source=APP`. | [optional]
Copy file name to clipboardExpand all lines: src/main/java/com/mx/client/mx_platform_api/MxPlatformApi.java
+17-9Lines changed: 17 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -12212,6 +12212,7 @@ public okhttp3.Call requestConnectWidgetURLAsync(String userGuid, ConnectWidgetR
12212
12212
* @param memberGuid The unique id for a `member`. (required)
12213
12213
* @param userGuid The unique id for a `user`. (required)
12214
12214
* @param clientRedirectUrl A URL that MX will redirect to at the end of OAuth with additional query parameters. Only available with `referral_source=APP`. (optional)
12215
+
* @param enableApp2app This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. This setting is not persistent. (optional)
12215
12216
* @param referralSource Must be either `BROWSER` or `APP` depending on the implementation. Defaults to `BROWSER`. (optional)
12216
12217
* @param skipAggregation Setting this parameter to `true` will prevent the member from automatically aggregating after being redirected from the authorization page. (optional)
12217
12218
* @param uiMessageWebviewUrlScheme A scheme for routing the user back to the application state they were previously in. Only available with `referral_source=APP`. (optional)
@@ -12224,7 +12225,7 @@ public okhttp3.Call requestConnectWidgetURLAsync(String userGuid, ConnectWidgetR
12224
12225
<tr><td> 200 </td><td> OK </td><td> - </td></tr>
12225
12226
</table>
12226
12227
*/
12227
-
public okhttp3.Call requestOAuthWindowURICall(String memberGuid, String userGuid, String clientRedirectUrl, String referralSource, Boolean skipAggregation, String uiMessageWebviewUrlScheme, final ApiCallback _callback) throws ApiException {
* @param memberGuid The unique id for a `member`. (required)
12314
12319
* @param userGuid The unique id for a `user`. (required)
12315
12320
* @param clientRedirectUrl A URL that MX will redirect to at the end of OAuth with additional query parameters. Only available with `referral_source=APP`. (optional)
12321
+
* @param enableApp2app This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. This setting is not persistent. (optional)
12316
12322
* @param referralSource Must be either `BROWSER` or `APP` depending on the implementation. Defaults to `BROWSER`. (optional)
12317
12323
* @param skipAggregation Setting this parameter to `true` will prevent the member from automatically aggregating after being redirected from the authorization page. (optional)
12318
12324
* @param uiMessageWebviewUrlScheme A scheme for routing the user back to the application state they were previously in. Only available with `referral_source=APP`. (optional)
@@ -12335,6 +12341,7 @@ public OAuthWindowResponseBody requestOAuthWindowURI(String memberGuid, String u
12335
12341
* @param memberGuid The unique id for a `member`. (required)
12336
12342
* @param userGuid The unique id for a `user`. (required)
12337
12343
* @param clientRedirectUrl A URL that MX will redirect to at the end of OAuth with additional query parameters. Only available with `referral_source=APP`. (optional)
12344
+
* @param enableApp2app This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. This setting is not persistent. (optional)
12338
12345
* @param referralSource Must be either `BROWSER` or `APP` depending on the implementation. Defaults to `BROWSER`. (optional)
12339
12346
* @param skipAggregation Setting this parameter to `true` will prevent the member from automatically aggregating after being redirected from the authorization page. (optional)
12340
12347
* @param uiMessageWebviewUrlScheme A scheme for routing the user back to the application state they were previously in. Only available with `referral_source=APP`. (optional)
@@ -12346,8 +12353,8 @@ public OAuthWindowResponseBody requestOAuthWindowURI(String memberGuid, String u
@@ -12358,6 +12365,7 @@ public ApiResponse<OAuthWindowResponseBody> requestOAuthWindowURIWithHttpInfo(St
12358
12365
* @param memberGuid The unique id for a `member`. (required)
12359
12366
* @param userGuid The unique id for a `user`. (required)
12360
12367
* @param clientRedirectUrl A URL that MX will redirect to at the end of OAuth with additional query parameters. Only available with `referral_source=APP`. (optional)
12368
+
* @param enableApp2app This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. This setting is not persistent. (optional)
12361
12369
* @param referralSource Must be either `BROWSER` or `APP` depending on the implementation. Defaults to `BROWSER`. (optional)
12362
12370
* @param skipAggregation Setting this parameter to `true` will prevent the member from automatically aggregating after being redirected from the authorization page. (optional)
12363
12371
* @param uiMessageWebviewUrlScheme A scheme for routing the user back to the application state they were previously in. Only available with `referral_source=APP`. (optional)
@@ -12370,9 +12378,9 @@ public ApiResponse<OAuthWindowResponseBody> requestOAuthWindowURIWithHttpInfo(St
12370
12378
<tr><td> 200 </td><td> OK </td><td> - </td></tr>
12371
12379
</table>
12372
12380
*/
12373
-
public okhttp3.Call requestOAuthWindowURIAsync(String memberGuid, String userGuid, String clientRedirectUrl, String referralSource, Boolean skipAggregation, String uiMessageWebviewUrlScheme, final ApiCallback<OAuthWindowResponseBody> _callback) throws ApiException {
0 commit comments