# File 'lib/zoomit/content.rb', line 6defself.find(id,options={})response=Zoomit.perform_get("/content/#{id}",options)Response.new(response.parsed_response)end
.find_by_url(url, options = {}) ⇒ ObjectAlso known as:
create
11
12
13
14
# File 'lib/zoomit/content.rb', line 11defself.find_by_url(url,options={})response=Zoomit.perform_get("/content",options.merge!(:query=>{:url=>url}))Response.new(response.parsed_response)end