module Knodes::Client::Locations
Public Instance Methods
location(options={})
click to toggle source
# File lib/knodes/client/locations.rb, line 4 def location(options={}) response = get("locations/#{options[:location_id]}", options.merge(creds)) end
location_documents(options={})
click to toggle source
# File lib/knodes/client/locations.rb, line 16 def location_documents(options={}) response = get("locations/#{options[:location_id]}/documents", options.merge(creds)) end
location_people(options={})
click to toggle source
# File lib/knodes/client/locations.rb, line 12 def location_people(options={}) response = get("locations/#{options[:location_id]}/people", options.merge(creds)) end
locations_search(options={})
click to toggle source
# File lib/knodes/client/locations.rb, line 8 def locations_search(options={}) response = get("locations/search", options.merge(creds)) end