@@ -4098,34 +4098,28 @@ def read_category_with_http_info(category_guid, user_guid, opts = {})
40984098 # Read a default category
40994099 # Use this endpoint to read the attributes of a default category.
41004100 # @param category_guid [String] The unique id for a `category`.
4101- # @param user_guid [String] The unique id for a `user`.
41024101 # @param [Hash] opts the optional parameters
41034102 # @return [CategoryResponseBody]
4104- def read_default_category ( category_guid , user_guid , opts = { } )
4105- data , _status_code , _headers = read_default_category_with_http_info ( category_guid , user_guid , opts )
4103+ def read_default_category ( category_guid , opts = { } )
4104+ data , _status_code , _headers = read_default_category_with_http_info ( category_guid , opts )
41064105 data
41074106 end
41084107
41094108 # Read a default category
41104109 # Use this endpoint to read the attributes of a default category.
41114110 # @param category_guid [String] The unique id for a `category`.
4112- # @param user_guid [String] The unique id for a `user`.
41134111 # @param [Hash] opts the optional parameters
41144112 # @return [Array<(CategoryResponseBody, Integer, Hash)>] CategoryResponseBody data, response status code and response headers
4115- def read_default_category_with_http_info ( category_guid , user_guid , opts = { } )
4113+ def read_default_category_with_http_info ( category_guid , opts = { } )
41164114 if @api_client . config . debugging
41174115 @api_client . config . logger . debug 'Calling API: MxPlatformApi.read_default_category ...'
41184116 end
41194117 # verify the required parameter 'category_guid' is set
41204118 if @api_client . config . client_side_validation && category_guid . nil?
41214119 fail ArgumentError , "Missing the required parameter 'category_guid' when calling MxPlatformApi.read_default_category"
41224120 end
4123- # verify the required parameter 'user_guid' is set
4124- if @api_client . config . client_side_validation && user_guid . nil?
4125- fail ArgumentError , "Missing the required parameter 'user_guid' when calling MxPlatformApi.read_default_category"
4126- end
41274121 # resource path
4128- local_var_path = '/categories/{category_guid}' . sub ( '{' + 'category_guid' + '}' , CGI . escape ( category_guid . to_s ) ) . sub ( '{' + 'user_guid' + '}' , CGI . escape ( user_guid . to_s ) )
4122+ local_var_path = '/categories/{category_guid}' . sub ( '{' + 'category_guid' + '}' , CGI . escape ( category_guid . to_s ) )
41294123
41304124 # query parameters
41314125 query_params = opts [ :query_params ] || { }
@@ -5196,28 +5190,32 @@ def read_user_with_http_info(user_guid, opts = {})
51965190 # Request connect widget url
51975191 # This endpoint will return a URL for an embeddable version of MX Connect.
51985192 # @param user_guid [String] The unique id for a `user`.
5193+ # @param connect_widget_request_body [ConnectWidgetRequestBody] Optional config options for WebView (is_mobile_webview, current_institution_code, current_member_guid, update_credentials)
51995194 # @param [Hash] opts the optional parameters
5200- # @option opts [ConnectWidgetRequestBody] :connect_widget_request_body Optional config options for WebView (is_mobile_webview, current_institution_code, current_member_guid, update_credentials)
52015195 # @return [ConnectWidgetResponseBody]
5202- def request_connect_widget_url ( user_guid , opts = { } )
5203- data , _status_code , _headers = request_connect_widget_url_with_http_info ( user_guid , opts )
5196+ def request_connect_widget_url ( user_guid , connect_widget_request_body , opts = { } )
5197+ data , _status_code , _headers = request_connect_widget_url_with_http_info ( user_guid , connect_widget_request_body , opts )
52045198 data
52055199 end
52065200
52075201 # Request connect widget url
52085202 # This endpoint will return a URL for an embeddable version of MX Connect.
52095203 # @param user_guid [String] The unique id for a `user`.
5204+ # @param connect_widget_request_body [ConnectWidgetRequestBody] Optional config options for WebView (is_mobile_webview, current_institution_code, current_member_guid, update_credentials)
52105205 # @param [Hash] opts the optional parameters
5211- # @option opts [ConnectWidgetRequestBody] :connect_widget_request_body Optional config options for WebView (is_mobile_webview, current_institution_code, current_member_guid, update_credentials)
52125206 # @return [Array<(ConnectWidgetResponseBody, Integer, Hash)>] ConnectWidgetResponseBody data, response status code and response headers
5213- def request_connect_widget_url_with_http_info ( user_guid , opts = { } )
5207+ def request_connect_widget_url_with_http_info ( user_guid , connect_widget_request_body , opts = { } )
52145208 if @api_client . config . debugging
52155209 @api_client . config . logger . debug 'Calling API: MxPlatformApi.request_connect_widget_url ...'
52165210 end
52175211 # verify the required parameter 'user_guid' is set
52185212 if @api_client . config . client_side_validation && user_guid . nil?
52195213 fail ArgumentError , "Missing the required parameter 'user_guid' when calling MxPlatformApi.request_connect_widget_url"
52205214 end
5215+ # verify the required parameter 'connect_widget_request_body' is set
5216+ if @api_client . config . client_side_validation && connect_widget_request_body . nil?
5217+ fail ArgumentError , "Missing the required parameter 'connect_widget_request_body' when calling MxPlatformApi.request_connect_widget_url"
5218+ end
52215219 # resource path
52225220 local_var_path = '/users/{user_guid}/connect_widget_url' . sub ( '{' + 'user_guid' + '}' , CGI . escape ( user_guid . to_s ) )
52235221
@@ -5238,7 +5236,7 @@ def request_connect_widget_url_with_http_info(user_guid, opts = {})
52385236 form_params = opts [ :form_params ] || { }
52395237
52405238 # http body (model)
5241- post_body = opts [ :debug_body ] || @api_client . object_to_http_body ( opts [ :' connect_widget_request_body' ] )
5239+ post_body = opts [ :debug_body ] || @api_client . object_to_http_body ( connect_widget_request_body )
52425240
52435241 # return_type
52445242 return_type = opts [ :debug_return_type ] || 'ConnectWidgetResponseBody'
0 commit comments