Skip to content

Instantly share code, notes, and snippets.

@neovintage
Created April 27, 2013 05:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neovintage/5471962 to your computer and use it in GitHub Desktop.
Save neovintage/5471962 to your computer and use it in GitHub Desktop.
Zoho Invoice Usage
require 'zoho_invoice'
client = ZohoInvoice::Client.new(:authtoken => 'my authtoken', :apikey => 'my apikey')
invoice = ZohoInvoice::Invoice.new(client, :customer_id => 'asdf')
invoice.save
invoice = client.invoices.new(:customer_id => 'asdf')
invoice.save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment