> 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: listDefaultTaxGroups() # Method package: wixBillingV2 # Method menu location: wixBillingV2 --> taxGroups --> listDefaultTaxGroups # Method Link: https://dev.wix.com/docs/velo/apis/wix-billing-v2/tax-groups/list-default-tax-groups.md # Method Description: Retrieves a list of default tax groups. The default tax groups for a site are inherited by the apps installed on the site. For example, the Wix Stores app includes a `"Products"` tax group by default. Add additional default tax groups with the Tax Groups Integration service plugin (REST only). # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## listDefaultTaxGroups example ```javascript import { taxGroups } from 'wix-billing.v2'; async function listDefaultTaxGroups() { try { const result = await taxGroups.listDefaultTaxGroups(); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## listDefaultTaxGroups example for exporting from backend code ```javascript import { taxGroups } from 'wix-billing.v2'; import { webMethod, Permissions } from 'wix-web-module'; export const listDefaultTaxGroups = webMethod( Permissions.Anyone, async () => { try { const result = await taxGroups.listDefaultTaxGroups(); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---