This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Creates a tax region.
Tax regions require a tax calculator appId
. Use
listTaxCalculators()
in Tax Calculation to retrieve a list of available calculators for a site.
Wix uses tax regions to calculateTax()
.
You can only call this method when authenticated as a Wix app or Wix user identity.
function createTaxRegion(taxRegion: TaxRegion): Promise<TaxRegion>;
Tax region to create.
import { taxRegions } from "@wix/billing";
async function createTaxRegion(taxRegion, options) {
const response = await taxRegions.createTaxRegion(taxRegion, options);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.