module Knodes::Client::Documents

Public Instance Methods

document(options={}) click to toggle source
# File lib/knodes/client/documents.rb, line 4
def document(options={})
  response = get("documents/#{options[:doc_id]}", options.merge(creds))
end
document_locations(options={}) click to toggle source
# File lib/knodes/client/documents.rb, line 16
def document_locations(options={})
  response = get("documents/#{options[:doc_id]}/locations", options.merge(creds))
end
document_people(options={}) click to toggle source
# File lib/knodes/client/documents.rb, line 12
def document_people(options={})
  response = get("documents/#{options[:doc_id]}/people", options.merge(creds))
end