This is a Ruby wrapper for the FreshBooks API. This style of API wrapper is typically called "reflective". However, because most web APIs (and in particular, FreshBooks' API) do not provide enough metadata to actually be reflective, I feel a more appropriate term is "isomorphic". i.e. the wrapper translates native (in this case Ruby) data structures to and from some representation (in this case XML) that the API understands.
For example,
c = FreshBooks::Client.new('youraccount.freshbooks.com', 'yourfreshbooksapitoken')
c.client.get :client_id => 2
generates the XML:
<?xml version="1.0" encoding="utf-8"?>
<request method="client.get">
<client_id>2</client_id>
</request>
purely based on the request arguments. This library doesn't actually know anything about the FreshBooks API. Instead it relies on users to read the FreshBooks API Documentation and build Ruby data structures (i.e. nested Hash and Array combos) that have isomorphic structure to intended API XML requests. The transformation is quite simple; once you understand how the mapping works any FreshBooks API request can easily be written as a Ruby data structure.
The following call will generate and POST the invoice create XML shown in the FreshBooks API Documentation:
c = FreshBooks::Client.new('youraccount.freshbooks.com', 'yourfreshbooksapitoken')
c.invoice.create(:invoice => {
:client_id => 13,
:number => 'FB00004',
:status => 'draft',
:date => '2007-06-23',
:po_number => 2314,
:discount => 10,
:notes => 'Due upon receipt.',
:currency_code => 'CAD',
:terms => 'Payment due in 30 days.',
:return_uri => 'http://example.com/account',
:first_name => 'John',
:last_name => 'Smith',
:organization => 'ABC Corp',
:p_street1 => nil,
:p_street2 => nil,
:p_city => nil,
:p_state => nil,
:p_country => nil,
:p_code => nil,
:vat_name => nil,
:vat_number => nil,
:lines => [{ :line => {
:name => 'Yard Work',
:description => 'Mowed the lawn.',
:unit_cost => 10,
:quantity => 4,
:tax1_name => 'GST',
:tax2_name => 'PST',
:tax1_percent => 5,
:tax2_percent => 8,
}}]})
You can call any #{namespace}.#{method_name}
method chain against a FreshBooks::Client
instance and it will POST a request with the corresponding FreshBooks API method. i.e.
c = FreshBooks::Client.new('youraccount.freshbooks.com', 'yourfreshbooksapitoken')
c.client.get :client_id => 37
c.invoice.list :client_id => 37, :page => 2, :per_page => 10
You can authenticate using either API tokens or OAuth. The FreshBooks::Client.new
constructor will create a client instance of the appropriate type depending on the arguments you pass in. so
c = FreshBooks::Client.new('youraccount.freshbooks.com', 'yourfreshbooksapitoken')
will return a FreshBooks::TokenClient
instance, and
c = FreshBooks::Client.new('youraccount.freshbooks.com', 'your_consumer_key', 'your_consumer_secret', 'your_access_token', 'your_access_token_secret')
will return a FreshBooks::OAuthClient
instance. both client classes work identically aside from how they authenticate requests.
note: this library provides no suppport for obtaining OAuth request or access tokens. for help with that take a look at FreshBooks' OAuth Documentation and the oauth gem.
invoices = FreshBooks::Invoice.list
invoice = invoices.first
invoice.amount = 500.00
invoice.update
if you want this sort of thing, please use freshbooks.rb instead
Maybe you should. It depends on what you want to do. I've used freshbooks.rb before but there were a few things that didn't work for me:
FreshBooks::Base
which is the superclass of Item
, Invoice
, etc.ActiveRecord
subclass that you're using to save your FreshBooks data into a database).gem install ruby-freshbooks
Copyright (c) 2010 Justin Giancola. See LICENSE for details.