简体   繁体   English

特殊税收管辖区的税收计算

[英]Tax calculation for special taxing jurisdictions

Our e-commerce has the ability to enable fallback tax if you cannot connect to Avatax.如果您无法连接到 Avatax,我们的电子商务能够启用回退税。 However, it is not perfect.然而,它并不完美。 Because the special tax cannot be calculated.因为特殊税无法计算。 The current e-commerce does not have information about special tax area.目前的电子商务没有关于特殊税区的信息。 Which API must I get from Avatax in advance to calculate the special tax as a "Fall-back" tax in e-commerce?我必须提前从 Avatax 获得哪个 API 才能将特殊税计算为电子商务中的“回退”税?

Take a look at the Avalara AvaTax TaxContent APIs to see if they are a solution for your use case.查看Avalara AvaTax TaxContent API ,看看它们是否适合您的用例。

Example using a zipcode as a filter:使用邮政编码作为过滤器的示例

https://sandbox-rest.avatax.com/api/v2/taxrates/bypostalcode?country=US&postalCode=80022 https://sandbox-rest.avatax.com/api/v2/taxrates/bypostalcode?country=US&postalCode=80022

Results sample:结果样本:

ZIP_CODE,STATE_ABBREV,COUNTY_NAME,CITY_NAME,STATE_SALES_TAX,STATE_USE_TAX,COUNTY_SALES_TAX,COUNTY_USE_TAX,CITY_SALES_TAX,CITY_USE_TAX,TOTAL_SALES_TAX,TOTAL_USE_TAX,TAX_SHIPPING_ALONE,TAX_SHIPPING_AND_HANDLING_TOGETHER 80001,CO,JEFFERSON,ARVADA,0.029000,0.029000,0.016000,0.011000,0.034600,0.034600,0.079600,0.074600,Y,N 80002,CO,JEFFERSON,ARVADA,0.029000,0.029000,0.016000,0.011000,0.034600,0.034600,0.079600,0.074600,Y,N (plus 640 more records) ZIP_CODE,STATE_ABBREV,COUNTY_NAME,CITY_NAME,STATE_SALES_TAX,STATE_USE_TAX,COUNTY_SALES_TAX,COUNTY_USE_TAX,CITY_SALES_TAX,CITY_USE_TAX,TOTAL_SALES_TAX,TOTAL_USE_TAX,TAX_SHIPPING_ALONE,TAX_SHIPPING_AND_HANDLING_TOGETHER 80001,CO,JEFFERSON,阿瓦达0.029000,0.029000,0.016000,0.011000,0.034600,0.034600,0.079600,0.074600 ,Y,N 80002,CO,JEFFERSON,ARVADA,0.029000,0.029000,0.016000,0.011000,0.034600,0.034600,0.079600,0.074600,0.074600,0.074600,0.074600

Example using an address :使用地址的示例

https://sandbox-rest.avatax.com/api/v2/taxrates/byaddress?line1=16394%20E%20105th%20Ave&city=Commerce%20City&region=CO&postalCode=80022&country=US https://sandbox-rest.avatax.com/api/v2/taxrates/byaddress?line1=16394%20E%20105th%20Ave&city=Commerce%20City&region=CO&postalCode=80022&country=US

Results:结果:

{"totalRate":0.0925,"rates":[{"rate":0.029,"name":"CO STATE TAX","type":"State"},{"rate":0.0075,"name":"CO COUNTY TAX","type":"County"},{"rate":0.045,"name":"CO CITY TAX","type":"City"},{"rate":0.01,"name":"CO SPECIAL TAX","type":"Special"},{"rate":0.001,"name":"CO SPECIAL TAX","type":"Special"}]}

NOTES:笔记:

The TaxConent API assumes that you are selling general tangible personal property at a retail point-of-sale location in the United States only. TaxConent API 假设您仅在美国的零售销售点销售一般有形个人财产。

The TaxRates APIs assumes that you are selling general tangible personal property at a retail point-of-sale location in the United States only. TaxRates API 假定您仅在美国的零售销售点销售一般有形个人财产。

Usage of the API's are subject to rate limits. API 的使用受速率限制。 Users who exceed the rate limit will receive HTTP response code 429 - Too Many Requests.超过速率限制的用户将收到 HTTP 响应代码 429 - Too Many Requests。 Contact your Avalara Customer Account Manager to learn more about rate limits.联系您的 Avalara 客户经理以了解有关速率限制的更多信息。

Visit Avalara's Developer Community at https://developercommunity.avalara.com/s/ -- An Avalara hosted page where you can get technical support from the team and community about specific API issues.访问 Avalara 的开发人员社区网址https://developercommunity.avalara.com/s/——一个 Avalara 托管页面,您可以在其中从团队和社区获得有关特定 API 问题的技术支持。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM