module Knodes::Client::Schools
Public Instance Methods
school(options={})
click to toggle source
# File lib/knodes/client/schools.rb, line 4 def school(options={}) response = get("schools/#{options[:school_id]}", options.merge(creds)) end
school_people(options={})
click to toggle source
# File lib/knodes/client/schools.rb, line 12 def school_people(options={}) response = get("schools/#{options[:school_id]}/people", options.merge(creds)) end
schools_search(options={})
click to toggle source
# File lib/knodes/client/schools.rb, line 8 def schools_search(options={}) response = get("schools/search", options.merge(creds)) end