createTaxRegion( )


Developer Preview

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().

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Stores - all permissions
Manage Orders
Manage Restaurants - all permissions
Learn more about app permissions.
Method Declaration
Copy
function createTaxRegion(taxRegion: TaxRegion): Promise<TaxRegion>;
Method Parameters
taxRegionTaxRegionRequired

Tax region to create.

Returns
Return Type:Promise<TaxRegion>
JavaScript
import { taxRegions } from "@wix/billing"; async function createTaxRegion(taxRegion, options) { const response = await taxRegions.createTaxRegion(taxRegion, options); }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?