module Knodes::Client::Companies
Public Instance Methods
companies_search(options={})
click to toggle source
# File lib/knodes/client/companies.rb, line 8 def companies_search(options={}) response = get("companies/search", options.merge(creds)) end
company(options={})
click to toggle source
# File lib/knodes/client/companies.rb, line 4 def company(options={}) response = get("companies/#{options[:company_id]}", options.merge(creds)) end
company_people(options={})
click to toggle source
# File lib/knodes/client/companies.rb, line 12 def company_people(options={}) response = get("companies/#{options[:company_id]}/people", options.merge(creds)) end