lib/purecloudplatformclientv2/api/routing_api.rb in purecloudplatformclientv2-42.0.0 vs lib/purecloudplatformclientv2/api/routing_api.rb in purecloudplatformclientv2-43.0.0
- old
+ new
@@ -2600,12 +2600,12 @@
# Get list of wrapup codes.
#
# @param [Hash] opts the optional parameters
# @option opts [Integer] :page_size Page size (default to 25)
# @option opts [Integer] :page_number Page number (default to 1)
- # @option opts [String] :name Name
# @option opts [String] :sort_by Sort by (default to name)
+ # @option opts [String] :name Name
# @return [WrapupCodeEntityListing]
def get_routing_wrapupcodes(opts = {})
data, _status_code, _headers = get_routing_wrapupcodes_with_http_info(opts)
return data
end
@@ -2613,12 +2613,12 @@
# Get list of wrapup codes.
#
# @param [Hash] opts the optional parameters
# @option opts [Integer] :page_size Page size
# @option opts [Integer] :page_number Page number
- # @option opts [String] :name Name
# @option opts [String] :sort_by Sort by
+ # @option opts [String] :name Name
# @return [Array<(WrapupCodeEntityListing, Fixnum, Hash)>] WrapupCodeEntityListing data, response status code and response headers
def get_routing_wrapupcodes_with_http_info(opts = {})
if @api_client.config.debugging
@api_client.config.logger.debug "Calling API: RoutingApi.get_routing_wrapupcodes ..."
end
@@ -2636,28 +2636,32 @@
+ if opts[:'sort_by'] && !['name', 'id'].include?(opts[:'sort_by'])
+ fail ArgumentError, 'invalid value for "sort_by", must be one of name, id'
+ end
+
# resource path
local_var_path = "/api/v2/routing/wrapupcodes".sub('{format}','json')
# query parameters
query_params = {}
query_params[:'pageSize'] = opts[:'page_size'] if opts[:'page_size']
query_params[:'pageNumber'] = opts[:'page_number'] if opts[:'page_number']
- query_params[:'name'] = opts[:'name'] if opts[:'name']
query_params[:'sortBy'] = opts[:'sort_by'] if opts[:'sort_by']
+ query_params[:'name'] = opts[:'name'] if opts[:'name']
# header parameters
header_params = {}
# HTTP header 'Accept' (if needed)
@@ -3119,9 +3123,159 @@
:body => post_body,
:auth_names => auth_names,
:return_type => 'UserRoutingLanguage')
if @api_client.config.debugging
@api_client.config.logger.debug "API called: RoutingApi#patch_user_routinglanguage\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
+ end
+ return data, status_code, headers
+ end
+
+ # Add bulk routing language to user. Max limit 50 languages
+ #
+ # @param user_id User ID
+ # @param body Language
+ # @param [Hash] opts the optional parameters
+ # @return [UserLanguageEntityListing]
+ def patch_user_routinglanguages_bulk(user_id, body, opts = {})
+ data, _status_code, _headers = patch_user_routinglanguages_bulk_with_http_info(user_id, body, opts)
+ return data
+ end
+
+ # Add bulk routing language to user. Max limit 50 languages
+ #
+ # @param user_id User ID
+ # @param body Language
+ # @param [Hash] opts the optional parameters
+ # @return [Array<(UserLanguageEntityListing, Fixnum, Hash)>] UserLanguageEntityListing data, response status code and response headers
+ def patch_user_routinglanguages_bulk_with_http_info(user_id, body, opts = {})
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "Calling API: RoutingApi.patch_user_routinglanguages_bulk ..."
+ end
+
+
+ # verify the required parameter 'user_id' is set
+ fail ArgumentError, "Missing the required parameter 'user_id' when calling RoutingApi.patch_user_routinglanguages_bulk" if user_id.nil?
+
+
+
+
+
+
+ # verify the required parameter 'body' is set
+ fail ArgumentError, "Missing the required parameter 'body' when calling RoutingApi.patch_user_routinglanguages_bulk" if body.nil?
+
+
+
+
+
+ # resource path
+ local_var_path = "/api/v2/users/{userId}/routinglanguages/bulk".sub('{format}','json').sub('{' + 'userId' + '}', user_id.to_s)
+
+ # query parameters
+ query_params = {}
+
+ # header parameters
+ header_params = {}
+
+ # HTTP header 'Accept' (if needed)
+ local_header_accept = ['application/json']
+ local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result
+
+ # HTTP header 'Content-Type'
+ local_header_content_type = ['application/json']
+ header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type)
+
+ # form parameters
+ form_params = {}
+
+ # http body (model)
+ post_body = @api_client.object_to_http_body(body)
+
+ auth_names = ['PureCloud Auth']
+ data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
+ :header_params => header_params,
+ :query_params => query_params,
+ :form_params => form_params,
+ :body => post_body,
+ :auth_names => auth_names,
+ :return_type => 'UserLanguageEntityListing')
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "API called: RoutingApi#patch_user_routinglanguages_bulk\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
+ end
+ return data, status_code, headers
+ end
+
+ # Add bulk routing skills to user
+ #
+ # @param user_id User ID
+ # @param body Skill
+ # @param [Hash] opts the optional parameters
+ # @return [UserSkillEntityListing]
+ def patch_user_routingskills_bulk(user_id, body, opts = {})
+ data, _status_code, _headers = patch_user_routingskills_bulk_with_http_info(user_id, body, opts)
+ return data
+ end
+
+ # Add bulk routing skills to user
+ #
+ # @param user_id User ID
+ # @param body Skill
+ # @param [Hash] opts the optional parameters
+ # @return [Array<(UserSkillEntityListing, Fixnum, Hash)>] UserSkillEntityListing data, response status code and response headers
+ def patch_user_routingskills_bulk_with_http_info(user_id, body, opts = {})
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "Calling API: RoutingApi.patch_user_routingskills_bulk ..."
+ end
+
+
+ # verify the required parameter 'user_id' is set
+ fail ArgumentError, "Missing the required parameter 'user_id' when calling RoutingApi.patch_user_routingskills_bulk" if user_id.nil?
+
+
+
+
+
+
+ # verify the required parameter 'body' is set
+ fail ArgumentError, "Missing the required parameter 'body' when calling RoutingApi.patch_user_routingskills_bulk" if body.nil?
+
+
+
+
+
+ # resource path
+ local_var_path = "/api/v2/users/{userId}/routingskills/bulk".sub('{format}','json').sub('{' + 'userId' + '}', user_id.to_s)
+
+ # query parameters
+ query_params = {}
+
+ # header parameters
+ header_params = {}
+
+ # HTTP header 'Accept' (if needed)
+ local_header_accept = ['application/json']
+ local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result
+
+ # HTTP header 'Content-Type'
+ local_header_content_type = ['application/json']
+ header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type)
+
+ # form parameters
+ form_params = {}
+
+ # http body (model)
+ post_body = @api_client.object_to_http_body(body)
+
+ auth_names = ['PureCloud Auth']
+ data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
+ :header_params => header_params,
+ :query_params => query_params,
+ :form_params => form_params,
+ :body => post_body,
+ :auth_names => auth_names,
+ :return_type => 'UserSkillEntityListing')
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "API called: RoutingApi#patch_user_routingskills_bulk\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
end
return data, status_code, headers
end
# Query for queue observations