> 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 # DeleteTaxGroup # Package: tax # Namespace: TaxGroups # Method link: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/extensions/tax/tax-groups/delete-tax-group.md ## Permission Scopes: Manage Stores: SCOPE.STORES.MANAGE-STORES ## Introduction 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. --- ## REST API ### Schema ``` Method: deleteTaxGroup Description: 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. URL: https://www.wixapis.com/billing/v1/tax-groups/{taxGroupId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: taxGroupId Method parameters: param name: taxGroupId | type: none | required: true Return type: DeleteTaxGroupResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Tax Group Deletes a tax group by ID ```curl curl -X DELETE \ 'https://www.wixapis.com/billing/v1/tax-groups/fec40cc5-28c7-4c53-a29b-2f5eed1c614d' \ -H 'Authorization: ' \ -H 'Content-type: application/json' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.tax.TaxGroups.deleteTaxGroup(taxGroupId) Description: 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. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: taxGroupId Method parameters: param name: taxGroupId | type: string | description: GUID of the tax group to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteTaxGroup ```javascript import { taxGroups } from '@wix/ecom'; async function deleteTaxGroup(taxGroupId) { const response = await taxGroups.deleteTaxGroup(taxGroupId); }; ``` ### deleteTaxGroup (with elevated permissions) ```javascript import { taxGroups } from '@wix/ecom'; import { auth } from '@wix/essentials'; async function myDeleteTaxGroupMethod(taxGroupId) { const elevatedDeleteTaxGroup = auth.elevate(taxGroups.deleteTaxGroup); const response = await elevatedDeleteTaxGroup(taxGroupId); } ``` ### deleteTaxGroup (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { taxGroups } from '@wix/ecom'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { taxGroups }, // Include the auth strategy and host as relevant }); async function deleteTaxGroup(taxGroupId) { const response = await myWixClient.taxGroups.deleteTaxGroup(taxGroupId); }; ``` ---