This library allows you to interact with Zuora billing platform directly using familiar ActiveModel based objects.
All additional requirements for development should be referenced in the provided zuora.gemspec and Gemfile.
git clone [email protected]:wildfireapp/zuora.git
$ bundle install
$ bundle exec irb -rzuora
Zuora.configure(:username => 'USER', :password => 'PASS', sandbox: true, logger: true)
account = Zuora::Objects::Account.new
=> #<Zuora::Objects::Account:0x00000002cd25b0 @changed_attributes={"auto_pay"=>nil, "currency"=>nil,
"batch"=>nil, "bill_cycle_day"=>nil, "status"=>nil, "payment_term"=>nil}, @auto_pay=false, @currency="USD",
@batch="Batch1", @bill_cycle_day=1, @status="Draft", @payment_term="Due Upon Receipt">
account.name = "Test"
=> "Test"
account.create
=> true
created_account = Zuora::Objects::Account.find(account.id)
=> #<Zuora::Objects::Account:0x00000003caafc8 @changed_attributes={}, @auto_pay=false, @currency="USD",
@batch="Batch1", @bill_cycle_day=1, @status="Draft", @payment_term="Due Upon Receipt",
@id="2c92c0f83c1de760013c449bc26e555b", @account_number="A00000008", @allow_invoice_edit=false,
@balance=#<BigDecimal:3c895f8,'0.0',9(18)>, @bcd_setting_option="ManualSet",
@created_by_id="2c92c0f83b02a9dc013b0a7e26a03d00", @created_date=Wed, 16 Jan 2013 10:25:24 -0800,
@invoice_delivery_prefs_email=false, @invoice_delivery_prefs_print=false, @name="Test",
@updated_by_id="2c92c0f83b02a9dc013b0a7e26a03d00", @updated_date=Wed, 16 Jan 2013 10:25:24 -0800>
You can generate up to date documentation with the provided rake task.
$ rake doc
$ open doc/index.html
Review the generated documentation for usage patterns and examples of using specific zObjects.
This library comes with a full test suite, which can be ran using the standard rake utility.
$ rake spec
There is also a live suite which you can test against your sandbox account. This can by ran by setting up your credentials and running the integration suite.
Do not run this suite using your production credentials. Doing so may destroy data although every precaution has been made to avoid any destructive behavior.
$ ZUORA_USER=login ZUORA_PASS=password rake spec:integrations
This library currently supports Zuora's SOAP API version 38.
If you would like to test out the EXPERIMENTAL API version 51 support, see the a51 branch and please file bugs and pull requests against it.
- Josh Martin [email protected]
- Alex Reyes [email protected]
- Wael Nasreddine [email protected]
- mdemin914
- jmonline
- Wildfire Ineractive for facilitating the development and maintenance of the project.
- Zuora for providing us with the opportunity to share this library with the community.