0.03
No commit activity in last 3 years
No release in over 3 years
Simple wrapper for invoicexpress.com API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0

Runtime

 Project Readme

InvoiceXpress GEM

Gem Version Build Status Code Climate

Gem for invoicexpress API at http://invoicexpress.com Created with Reference: https://invoicexpress.com/api/overview

Dependencies

Run bundle, the project should need:

  • Invoicexpress API Key
  • Happymapper
  • Faraday
  • And pretzels!

Progress

  • Client - 100%
  • Sequences - 100%
  • Users - 100%
  • Invoices - 100%
  • Cash Invoices - 100%
  • Items - 100%
  • Charts - 100%
  • Debit Notes - 100%
  • Credit Notes - 100%
  • Taxes - 100%
  • Schedules - 100%
  • Sim. Invoices - 100%
  • Purch. Orders - 100%

Tests

  • Client - 100%
  • Sequences - 100%
  • Users - 100%
  • Charts - 100%
  • Taxes - 100%
  • Schedules - 100%
  • Invoices - 100%
  • Sim. Invoices - 100%
  • Credit Notes - 100%
  • Purch. Orders - 100%

Documentation

We've included docs for all methods. Refer to the doc folder and client section.

Examples

If using from inside a rails project use:

require 'invoicexpress'

client = Invoicexpress::Client.new(
  :account_name => "yourusername",
  :api_key     => "yourapikey"
)

Examples for API are located in the EXAMPLES.md file.