> 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: deleteTaxRegion(taxRegionId: string) # Method package: wixBillingV2 # Method menu location: wixBillingV2 --> taxRegions --> deleteTaxRegion # Method Link: https://dev.wix.com/docs/velo/apis/wix-billing-v2/tax-regions/delete-tax-region.md # Method Description: Deletes a tax region. When a tax region is deleted, tax is not calculated and zero tax will be returned for addresses in this region. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## deleteTaxRegion example for dashboard page code ```javascript import { taxRegions } from 'wix-billing.v2'; async function deleteTaxRegion(taxRegionId) { try { const result = await taxRegions.deleteTaxRegion(taxRegionId); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## deleteTaxRegion example for exporting from backend code ```javascript import { taxRegions } from 'wix-billing.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedDeleteTaxRegion = elevate(taxRegions.deleteTaxRegion); export const deleteTaxRegion = webMethod( Permissions.Anyone, async (taxRegionId) => { try { const result = await elevatedDeleteTaxRegion(taxRegionId); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---