lib/purecloudplatformclientv2/api/routing_api.rb in purecloudplatformclientv2-35.0.0 vs lib/purecloudplatformclientv2/api/routing_api.rb in purecloudplatformclientv2-36.0.0

- old
+ new

@@ -1902,9 +1902,131 @@ @api_client.config.logger.debug "API called: RoutingApi#get_routing_queues\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end + # Search for queues by name + # + # @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] :sort_by Sort by (default to name) + # @option opts [String] :sort_order Sort order (default to asc) + # @option opts [String] :name Name + # @option opts [Array<String>] :id Queue ID(s) + # @option opts [Array<String>] :division_id Division ID(s) + # @return [QueueEntityListing] + def get_routing_queues_search(opts = {}) + data, _status_code, _headers = get_routing_queues_search_with_http_info(opts) + return data + end + + # Search for queues by name + # + # @param [Hash] opts the optional parameters + # @option opts [Integer] :page_size Page size + # @option opts [Integer] :page_number Page number + # @option opts [String] :sort_by Sort by + # @option opts [String] :sort_order Sort order + # @option opts [String] :name Name + # @option opts [Array<String>] :id Queue ID(s) + # @option opts [Array<String>] :division_id Division ID(s) + # @return [Array<(QueueEntityListing, Fixnum, Hash)>] QueueEntityListing data, response status code and response headers + def get_routing_queues_search_with_http_info(opts = {}) + if @api_client.config.debugging + @api_client.config.logger.debug "Calling API: RoutingApi.get_routing_queues_search ..." + end + + + + + + + + + + + + + + + + + + + + + + + if opts[:'sort_order'] && !['asc', 'desc', 'score'].include?(opts[:'sort_order']) + fail ArgumentError, 'invalid value for "sort_order", must be one of asc, desc, score' + end + + + + + + + + + + + + + + + + + + + + + + + # resource path + local_var_path = "/api/v2/routing/queues/search".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[:'sortBy'] = opts[:'sort_by'] if opts[:'sort_by'] + query_params[:'sortOrder'] = opts[:'sort_order'] if opts[:'sort_order'] + query_params[:'name'] = opts[:'name'] if opts[:'name'] + query_params[:'id'] = @api_client.build_collection_param(opts[:'id'], :multi) if opts[:'id'] + query_params[:'divisionId'] = @api_client.build_collection_param(opts[:'division_id'], :multi) if opts[:'division_id'] + + # 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 = nil + + auth_names = ['PureCloud Auth'] + data, status_code, headers = @api_client.call_api(:GET, local_var_path, + :header_params => header_params, + :query_params => query_params, + :form_params => form_params, + :body => post_body, + :auth_names => auth_names, + :return_type => 'QueueEntityListing') + if @api_client.config.debugging + @api_client.config.logger.debug "API called: RoutingApi#get_routing_queues_search\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + end + return data, status_code, headers + end + # Get Routing Skill # # @param skill_id Skill ID # @param [Hash] opts the optional parameters # @return [RoutingSkill]