Sha256: 1b52d5311df2e32afb63086dde76f05f78a7b9ce96f1ae5aeab70fd33ceb142b

Contents?: true

Size: 752 Bytes

Versions: 15

Compression:

Stored size: 752 Bytes

Contents

module Services
  module Hubspot
    module Companies
      class Search
        def initialize(domain)
          @domain = domain
        end

        def call
          search_api = ::Hubspot::Crm::Companies::SearchApi.new
          search_api.do_search(body: search_request, auth_names: 'oauth2').results
        end

        private

        def search_request
          filter = ::Hubspot::Crm::Companies::Filter.new(
            property_name: 'domain',
            operator: 'EQ',
            value: @domain
          )
          filter_group = ::Hubspot::Crm::Companies::FilterGroup.new(filters: [filter])
          ::Hubspot::Crm::Companies::PublicObjectSearchRequest.new(filter_groups: [filter_group])
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
hubspot-api-client-7.1.0 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-7.0.0 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-6.0.0 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-5.0.0 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-4.0.0 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-3.3.0 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-3.2.0 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-3.1.1 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-3.1.0.pre.beta sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-3.0.0.pre.beta sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-2.3.2 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-2.3.1 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-2.2.0 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-2.1.0 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb
hubspot-api-client-2.0.0 sample-apps/companies-app/app/lib/services/hubspot/companies/search.rb