Note: This API will be deprecated on September 30, 2025. Use the identical Tax Groups API in the @wix/ecom
module instead.
The Tax Groups API allows you to create and manage tax groups to categorize products based on distinct tax treatments. Use the Tax Groups API together with the Tax Regions API and the Tax Calculation API to customize the application of tax for a business.
To use the TaxGroups API, install the @wix/billing
package.
Follow the installation instructions for your development environment.
Development environment | Installation method |
---|---|
Wix sites (editor or IDE) | Use the package manager. |
Wix sites (local IDE) | Run wix install @wix/billing using the Wix CLI. |
Blocks apps | Use the same installation method as Wix sites. |
CLI and self-hosted apps | Run npm install @wix/billing or yarn add @wix/billing . |
Headless sites and apps | Run npm install @wix/billing or yarn add @wix/billing . |
To import the package in your code:
import { taxGroups } from "@wix/billing";
This article presents a possible use case and a corresponding sample flow that you can support. This can be a helpful jumping off point as you plan your implementation.
Many jurisdictions implement back-to-school sales tax holidays before the start of the school year. During these periods certain school supplies, clothing and electronics are exempt from sales tax.
Create a tax group to categorize these items:
id
that is returned. Note that each tax group is calculated based on the tax region, if the tax group is treated differently based on the region then a unique group should be created for each region.taxGroupId
field for the relevant products in your catalog.When a tax group is no longer needed, such as when the seasonal status no longer applies, delete the group. The default tax group for that catalog will apply to any products that have the deleted taxGroupId
.
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 group.
Call Stores Update Product to add the taxGroupId
to specific products to categorize as a group based on distinct tax treatment.
Wix uses tax groups to calculate tax.
In addition to tax groups you create, default tax groups are already included in all Wix catalogs. Call List Default Tax Groups to retrieve them. You can also use the Tax Groups Integration service plugin (REST only) to create new default tax groups that can be applied directly to an entire catalog of products.
function createTaxGroup(taxGroup: TaxGroup): Promise<TaxGroup>;
Tax group to create.
import { taxGroups } from "@wix/billing";
async function createTaxGroup(taxGroup) {
const response = await taxGroups.createTaxGroup(taxGroup);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Deletes a tax group.
If a tax group is deleted but the taxGroupId
is still assigned to a product (see Stores Products API) then the default tax group is used to calculate tax.
function deleteTaxGroup(taxGroupId: string): Promise<void>;
ID of the tax group to delete.
import { taxGroups } from "@wix/billing";
async function deleteTaxGroup(taxGroupId) {
const response = await taxGroups.deleteTaxGroup(taxGroupId);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.