Discover Avalara's API, key features, benefits, and integration use cases in our guide for streamlined tax compliance solutions.
Avalara Overview
Key Features
Then all you have to do is schedule your free consultation. We make it effortless to connect and optimize the tools you need to grow your business. Let’s streamline your success
Avalara API Overview
{
"type": "SalesOrder",
"companyCode": "DEFAULT",
"customerCode": "ABC123",
"addresses": [
{
"line1": "123 Main Street",
"city": "Seattle",
"region": "WA",
"country": "US",
"postalCode": "98101"
}
],
"lines": [
{
"number": "1",
"amount": 100,
"taxCode": "P0000000"
}
]
}
We are a team of professionals that are more than just talented technical experts. We understand the business needs drive the software development process. Our team doesn't just deliver a great technical product, but we also deliver on your business objectives
POST /api/v2/transactions/create
Content-Type: application/json
{
"companyCode": "YOUR_COMPANY_CODE",
"date": "2023-10-01",
"customerCode": "Customer1",
"type": "SalesOrder",
"lines": [
{
"number": "1",
"quantity": 1,
"amount": 100,
"taxCode": "P0000000"
}
],
"addresses": {
"shipFrom": {
"line1": "123 Main Street",
"city": "Irvine",
"region": "CA",
"country": "US",
"postalCode": "92615"
},
"shipTo": {
"line1": "456 Elm Street",
"city": "Mayberry",
"region": "NC",
"country": "US",
"postalCode": "27030"
}
}
}
GET /api/v2/companies/YOUR_COMPANY_CODE/reports
Content-Type: application/json
POST /api/v2/transactions/create
Content-Type: application/json
{
"companyCode": "YOUR_COMPANY_CODE",
"currencyCode": "EUR",
"date": "2023-10-01",
"customerCode": "CustomerInternational",
"type": "SalesOrder",
"lines": [
{
"number": "1",
"quantity": 1,
"amount": 250,
"taxCode": "D0000000"
}
],
"addresses": {
"shipFrom": {
"line1": "123 International Road",
"city": "Rotterdam",
"region": "ZH",
"country": "NL",
"postalCode": "3011"
},
"shipTo": {
"line1": "789 Global Trade St.",
"city": "Berlin",
"region": "BE",
"country": "DE",
"postalCode": "10115"
}
}
}
Integrating Avalara API
Why You Should Get Our Help at RapidDev
npm install avalara