All Projects → avadev → AvaTax-REST-V2-Ruby-SDK

avadev / AvaTax-REST-V2-Ruby-SDK

Licence: Apache-2.0 license
Sales Tax API SDK for Ruby and AvaTax REST

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to AvaTax-REST-V2-Ruby-SDK

AvaTax-REST-V2-PHP-SDK
Sales Tax API SDK for PHP and AvaTax REST
Stars: ✭ 42 (+23.53%)
Mutual labels:  tax-rate, sales-tax, tax-rates, avalara
taxjar-php
Sales Tax API Client for PHP 5.5+
Stars: ✭ 66 (+94.12%)
Mutual labels:  tax, tax-rate, sales-tax
taxjar.net
Sales Tax API Client for .NET / C#
Stars: ✭ 21 (-38.24%)
Mutual labels:  tax, tax-rate, sales-tax
taxjar-magento2-extension
Magento 2 Sales Tax Extension by TaxJar
Stars: ✭ 23 (-32.35%)
Mutual labels:  tax, tax-rate, sales-tax
taxjar-woocommerce-plugin
WooCommerce Sales Tax Plugin by TaxJar
Stars: ✭ 26 (-23.53%)
Mutual labels:  tax, tax-rate, sales-tax
canada-sale-tax-api
API to retrieve canadian federal and provincial tax rates. Documentation and endpoints on the website:
Stars: ✭ 18 (-47.06%)
Mutual labels:  tax-rate, tax-rates
vat-rates
💸 {Digital,Cloud,Electronic,Online} Services VAT Rate Database
Stars: ✭ 81 (+138.24%)
Mutual labels:  tax, tax-rate
company-admin
Filling annual returns (through ACRA) and tax (through IRAS) for Singapore based small company
Stars: ✭ 23 (-32.35%)
Mutual labels:  tax
taxjar-java
Sales Tax API Client for Java
Stars: ✭ 13 (-61.76%)
Mutual labels:  sales-tax
AvaTax-REST-V2-Python-SDK
Sales Tax API SDK for Python and AvaTax REST
Stars: ✭ 17 (-50%)
Mutual labels:  avalara
taro-tax
taro版个税小程序
Stars: ✭ 12 (-64.71%)
Mutual labels:  tax
BittyTax
Crypto-currency tax calculator for UK tax rules.
Stars: ✭ 304 (+794.12%)
Mutual labels:  tax
CoinTaxman
Calculate your taxes from cryptocurrency gains
Stars: ✭ 110 (+223.53%)
Mutual labels:  tax
eBay-node-client
Ebay NodeJS Wrapper
Stars: ✭ 50 (+47.06%)
Mutual labels:  sales-tax
erpnextswiss
ERPNext application for Switzerland-specific use cases
Stars: ✭ 58 (+70.59%)
Mutual labels:  tax
taxjar-python
Sales Tax API Client for Python 2.6+ / Python 3+
Stars: ✭ 24 (-29.41%)
Mutual labels:  sales-tax
apple-slicer
Parses App Store Connect (formerly iTunes Connect) financial reports and splits sales by their legally accountable Apple subsidiaries
Stars: ✭ 34 (+0%)
Mutual labels:  tax
SAF-T-AO
Official XSD from the Government of Angola for use in SAF-T AO
Stars: ✭ 42 (+23.53%)
Mutual labels:  tax
vat
EU VAT number validation in Go using VIES SOAP service
Stars: ✭ 23 (-32.35%)
Mutual labels:  tax
github-sponsors-tax
GitHub Sponsorsの確定申告手順
Stars: ✭ 125 (+267.65%)
Mutual labels:  tax

The AvaTax Ruby Gem

A Ruby wrapper for the AvaTax REST V2 APIs

Installation

gem install avatax

Simple Code Example

@client = AvaTax::Client.new({ :logger => true, :log_request_and_response_info => true })

createTransactionModel = {
  "type" => 'SalesInvoice',
  "companyCode" => '12670',
  "date" => '2017-06-05',
  "customerCode" => 'ABC',
  "addresses" => {
    "ShipFrom" => {
      "line1" => "123 Main Street",
      "city" => "Irvine",
      "region" => "CA",
      "country" => "US",
      "postalCode" => "92615"
    },
    "ShipTo" => {
      "line1" => "100 Market Street",
      "city" => "San Francisco",
      "region" => "CA",
      "country" => "US",
      "postalCode" => "94105"
    }
  },
  "lines" => [ { "amount" => 100 }]
}

transaction = @client.create_transaction(createTransactionModel)

If you'd like to see a more complete code example with credentials, check out our example folder.

AvaTax REST and Search APIs

Our developer site documents all the AvaTax REST and other APIs. Subscribe to the RSS feed to stay up to date on the lates news and announcements.

API docs

Blog

The Developer Blog features news and important announcements about the AvaTax Platform and SDKs. You will also find tutorials and best practices to help you build great platform integrations.

Contributing

In the spirit of free software, everyone is encouraged to help improve this project.

Here are some ways you can contribute:

  • by using alpha, beta, and prerelease versions
  • by reporting bugs
  • by suggesting new features
  • by writing or editing documentation
  • by writing specifications
  • by writing code (no patch is too small: fix typos, add comments, clean up inconsistent whitespace)
  • by refactoring code
  • by closing issues
  • by reviewing patches

Submitting an Issue

We use the GitHub issue tracker to track bugs and features. Before submitting a bug report or feature request, check to make sure it hasn't already been submitted. You can indicate support for an existing issue by voting it up. When submitting a bug report, please include a Gist that includes a stack trace and any details that may be necessary to reproduce the bug, including your gem version, Ruby version, and operating system. Ideally, a bug report should include a pull request with failing specs.

Submitting a Pull Request

  1. Fork the project.
  2. Create a topic branch.
  3. Implement your feature or bug fix.
  4. Add documentation for your feature or bug fix.
  5. Run rake doc:yard. If your changes are not 100% documented, go back to step 4.
  6. Add specs for your feature or bug fix.
  7. Commit and push your changes.
  8. Submit a pull request. Please do not include changes to the gemspec, version, or history file. (If you want to create your own version for some reason, please do so in a separate commit.)

Build Status

Build Status

Copyright

Copyright (c) 2017, Avalara, Inc. All rights reserved. By contributing to AvaTax Ruby Gem, you agree that your contributions will be licensed under its Apache License. See LICENSE for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].