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