module Knodes::Client::Companies

Public Instance Methods

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