> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: createTaxGroup(taxGroup: TaxGroup) # Method package: wixBillingV2 # Method menu location: wixBillingV2 --> taxGroups --> createTaxGroup # Method Link: https://dev.wix.com/docs/velo/apis/wix-billing-v2/tax-groups/create-tax-group.md # Method Description: 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. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## createTaxGroup example for dashboard page code ```javascript import { taxGroups } from 'wix-billing.v2'; async function createTaxGroup(taxGroup) { try { const result = await taxGroups.createTaxGroup(taxGroup); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## createTaxGroup example for exporting from backend code ```javascript import { taxGroups } from 'wix-billing.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedCreateTaxGroup = elevate(taxGroups.createTaxGroup); export const createTaxGroup = webMethod( Permissions.Anyone, async (taxGroup) => { try { const result = await elevatedCreateTaxGroup(taxGroup); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---