Class: Hithorizons::Company::Search

Inherits:
BaseApi
  • Object
show all
Defined in:
lib/hithorizons/company/search.rb

Constant Summary

Constants inherited from BaseApi

BaseApi::API_URL

Class Method Summary collapse

Methods inherited from BaseApi

api_key, initialize_client, process_request, request

Class Method Details

.get(duns_number: nil, company_name: nil, national_id: nil, address_unstructured: nil, address_street: nil, city: nil, state_province: nil, country: nil, show_branches: nil, company_types: nil, max_results: nil) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'lib/hithorizons/company/search.rb', line 6

def self.get(duns_number: nil, company_name: nil, national_id: nil, address_unstructured: nil, address_street: nil,
             city: nil, state_province: nil, country: nil, show_branches: nil, company_types: nil, max_results: nil)
  payload = {
    DUNSNumber: duns_number, CompanyName: company_name, NationalId: national_id, AddressUnstructured: address_unstructured,
    AddressStreet: address_street, City: city, StateProvince: state_province, Country: country, ShowBranches: show_branches,
    CompanyTypes: company_types, MaxResults: max_results
  }
  process_request('/Search', 'GET', payload.compact)
end