> 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 # GetTaxGroup # Package: tax # Namespace: TaxGroups # Method link: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/extensions/tax/tax-groups/get-tax-group.md ## Permission Scopes: Manage Orders: SCOPE.DC-STORES.MANAGE-ORDERS ## Introduction Retrieves a tax group. --- ## REST API ### Schema ``` Method: getTaxGroup Description: Retrieves a tax group. URL: https://www.wixapis.com/billing/v1/tax-groups/{taxGroupId} Method: GET # 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: GetTaxGroupResponse - name: taxGroup | type: TaxGroup | description: Retrieved tax group. - name: id | type: string | description: Tax group GUID. - name: name | type: string | description: Tax group name. - name: revision | type: string | description: Revision number, which increments by 1 each time the tax group is updated. To prevent conflicting changes, the current revision must be passed when updating the tax group. Ignored when creating a tax group. - name: createdDate | type: string | description: Date and time the tax group was created. - name: updatedDate | type: string | description: Date and time the tax group was last updated. ``` ### Examples ### Get Tax Group Retrieves a tax group by ID ```curl curl -X GET \ '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.getTaxGroup(taxGroupId) Description: Retrieves a tax group. # 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 retrieve. | required: true Return type: PROMISE - name: _id | type: string | description: Tax group GUID. - name: name | type: string | description: Tax group name. - name: revision | type: string | description: Revision number, which increments by 1 each time the tax group is updated. To prevent conflicting changes, the current revision must be passed when updating the tax group. Ignored when creating a tax group. - name: _createdDate | type: Date | description: Date and time the tax group was created. - name: _updatedDate | type: Date | description: Date and time the tax group was last updated. ``` ### Examples ### getTaxGroup ```javascript import { taxGroups } from '@wix/ecom'; async function getTaxGroup(taxGroupId) { const response = await taxGroups.getTaxGroup(taxGroupId); }; ``` ### getTaxGroup (with elevated permissions) ```javascript import { taxGroups } from '@wix/ecom'; import { auth } from '@wix/essentials'; async function myGetTaxGroupMethod(taxGroupId) { const elevatedGetTaxGroup = auth.elevate(taxGroups.getTaxGroup); const response = await elevatedGetTaxGroup(taxGroupId); } ``` ### getTaxGroup (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 getTaxGroup(taxGroupId) { const response = await myWixClient.taxGroups.getTaxGroup(taxGroupId); }; ``` ---