class Zoho::Api::Product

Public Class Methods

all() click to toggle source
# File lib/zoho/api/product.rb, line 3
def all
  base_url = Zoho::Api::HOST+"/api/v1/products"
  response = get(base_url)
end
find(product_id) click to toggle source
# File lib/zoho/api/product.rb, line 8
def find product_id
  base_url = Zoho::Api::HOST+"/api/v1/products/#{product_id}"
  response = get(base_url)
end