Skip to main content
Published: October 27 2005, 11:05:00 AMUpdated: July 22 2022, 3:54:39 AM

If I have a multi-jurisdiction tax table, how can I reset it?

If you want to reset your tax table altogether, a solution would be to list one jurisdiction with the sales tax percent set to zero. Omitting details for the other jurisdictions, will eliminate them from the tax table altogether since whatever you send to SetTaxTable is considered to be a complete tax table. For more detailed information on enabling multi-jurisdiction sales tax, please see the documentation.

Here is a sample call that will reset the tax table:

<?xml version="1.0"encoding="utf-8"?>
<
SetTaxTableRequest xmlns="urn:ebay:apis:eBLBaseComponents"> 
  <TaxTable>
    <
TaxJurisdiction>
      <
JurisdictionID>AK</JurisdictionID>
      <
SalesTaxPercent>0</SalesTaxPercent>
      <
ShippingIncludedInTax>false</ShippingIncludedInTax>
    </
TaxJurisdiction>
  </
TaxTable>
<
RequesterCredentials>
  <
eBayAuthToken>******</eBayAuthToken>
</
RequesterCredentials>
</
SetTaxTableRequest >

 

How well did this answer your question?
Answers others found helpful