About the Tax Groups API

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.

Use case

Terminology

  • Tax group: A group of products that share the same tax treatment. Assign tax groups manually to products with Update Product.
  • Default tax group: A predefined tax group provided by an app, for example Wix Stores, and is the default tax group automatically assigned to products imported from that app's catalog.
Did this help?

Setup

@wix/billing

To use the TaxGroups API, install the @wix/billing package.

Install the package

Follow the installation instructions for your development environment.

Development environmentInstallation method
Wix sites (editor or IDE)Use the package manager.
Wix sites (local IDE)Run wix install @wix/billing using the Wix CLI.
Blocks appsUse the same installation method as Wix sites.
CLI and self-hosted appsRun npm install @wix/billing or yarn add @wix/billing.
Headless sites and appsRun npm install @wix/billing or yarn add @wix/billing.

Import the package

To import the package in your code:

Copy
import { taxGroups } from "@wix/billing";
Did this help?

Sample Flow

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.

Create a new tax group for back-to-school items

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:

  1. Call Create Tax Group to create and name a new tax group. Save the 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.
  2. Call Update Product to update the 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.

Did this help?

createTaxGroup( )


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

Authentication
  • When developing websites or building an app with Blocks, this method may require elevated permissions, depending on the identity of the user calling it and the calling user’s permissions.
  • When building apps without Blocks or for headless projects, you can only call this method directly when authenticated as a Wix app or Wix user identity. When authenticated as a different identity, you can call this method using elevation.
  • Elevation permits users to call methods they typically cannot access. Therefore, you should only use it intentionally and securely.
Permissions
Manage Stores - all permissions
Manage Orders
Manage Restaurants - all permissions
Learn more about app permissions.
Method Declaration
Copy
function createTaxGroup(taxGroup: TaxGroup): Promise<TaxGroup>;
Method Parameters
taxGroupTaxGroupRequired

Tax group to create.

Returns
Return Type:Promise<TaxGroup>
JavaScript
import { taxGroups } from "@wix/billing"; async function createTaxGroup(taxGroup) { const response = await taxGroups.createTaxGroup(taxGroup); }
Errors

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

Did this help?

deleteTaxGroup( )


Developer Preview

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.

Authentication
  • When developing websites or building an app with Blocks, this method may require elevated permissions, depending on the identity of the user calling it and the calling user’s permissions.
  • When building apps without Blocks or for headless projects, you can only call this method directly when authenticated as a Wix app or Wix user identity. When authenticated as a different identity, you can call this method using elevation.
  • Elevation permits users to call methods they typically cannot access. Therefore, you should only use it intentionally and securely.
Permissions
Manage Stores - all permissions
Manage Orders
Manage Restaurants - all permissions
Learn more about app permissions.
Method Declaration
Copy
function deleteTaxGroup(taxGroupId: string): Promise<void>;
Method Parameters
taxGroupIdstringRequired

ID of the tax group to delete.

JavaScript
import { taxGroups } from "@wix/billing"; async function deleteTaxGroup(taxGroupId) { const response = await taxGroups.deleteTaxGroup(taxGroupId); }
Errors

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

Did this help?