lib/purecloudplatformclientv2/api/groups_api.rb in purecloudplatformclientv2-29.0.0 vs lib/purecloudplatformclientv2/api/groups_api.rb in purecloudplatformclientv2-30.0.0

- old
+ new

@@ -298,25 +298,90 @@ @api_client.config.logger.debug "API called: GroupsApi#get_group\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end - # Get group members + # Get all individuals associated with the group # # @param group_id Group ID # @param [Hash] opts the optional parameters + # @return [Array<UserEntityListing>] + def get_group_individuals(group_id, opts = {}) + data, _status_code, _headers = get_group_individuals_with_http_info(group_id, opts) + return data + end + + # Get all individuals associated with the group + # + # @param group_id Group ID + # @param [Hash] opts the optional parameters + # @return [Array<(Array<UserEntityListing>, Fixnum, Hash)>] Array<UserEntityListing> data, response status code and response headers + def get_group_individuals_with_http_info(group_id, opts = {}) + if @api_client.config.debugging + @api_client.config.logger.debug "Calling API: GroupsApi.get_group_individuals ..." + end + + + # verify the required parameter 'group_id' is set + fail ArgumentError, "Missing the required parameter 'group_id' when calling GroupsApi.get_group_individuals" if group_id.nil? + + + + + + # resource path + local_var_path = "/api/v2/groups/{groupId}/individuals".sub('{format}','json').sub('{' + 'groupId' + '}', group_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 = 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 => 'Array<UserEntityListing>') + if @api_client.config.debugging + @api_client.config.logger.debug "API called: GroupsApi#get_group_individuals\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + end + return data, status_code, headers + end + + # Get group members, includes individuals, owners, and dynamically included people + # + # @param group_id Group ID + # @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_order Ascending or descending sort order (default to ASC) # @option opts [Array<String>] :expand Which fields, if any, to expand # @return [UserEntityListing] def get_group_members(group_id, opts = {}) data, _status_code, _headers = get_group_members_with_http_info(group_id, opts) return data end - # Get group members + # Get group members, includes individuals, owners, and dynamically included people # # @param group_id Group ID # @param [Hash] opts the optional parameters # @option opts [Integer] :page_size Page size # @option opts [Integer] :page_number Page number @@ -643,9 +708,104 @@ :body => post_body, :auth_names => auth_names, :return_type => 'GroupsSearchResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: GroupsApi#get_groups_search\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + end + return data, status_code, headers + end + + # Get group profile listing + # + # @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 [Array<String>] :id id + # @option opts [String] :sort_order Ascending or descending sort order (default to ASC) + # @return [GroupProfileEntityListing] + def get_profiles_groups(opts = {}) + data, _status_code, _headers = get_profiles_groups_with_http_info(opts) + return data + end + + # Get group profile listing + # + # @param [Hash] opts the optional parameters + # @option opts [Integer] :page_size Page size + # @option opts [Integer] :page_number Page number + # @option opts [Array<String>] :id id + # @option opts [String] :sort_order Ascending or descending sort order + # @return [Array<(GroupProfileEntityListing, Fixnum, Hash)>] GroupProfileEntityListing data, response status code and response headers + def get_profiles_groups_with_http_info(opts = {}) + if @api_client.config.debugging + @api_client.config.logger.debug "Calling API: GroupsApi.get_profiles_groups ..." + end + + + + + + + + + + + + + + + + + + + + + + + if opts[:'sort_order'] && !['ascending', 'descending'].include?(opts[:'sort_order']) + fail ArgumentError, 'invalid value for "sort_order", must be one of ascending, descending' + end + + + + + # resource path + local_var_path = "/api/v2/profiles/groups".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[:'id'] = @api_client.build_collection_param(opts[:'id'], :multi) if opts[:'id'] + query_params[:'sortOrder'] = opts[:'sort_order'] if opts[:'sort_order'] + + # 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 => 'GroupProfileEntityListing') + if @api_client.config.debugging + @api_client.config.logger.debug "API called: GroupsApi#get_profiles_groups\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # Add members