> 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

# Resource: Tax Exempt Groups

# Type: Tax Exempt Group Object

# Link: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/extensions/tax/tax-exempt-groups/tax-exempt-group-object.md

## Description: A tax exempt group is a reusable, named set of tax exemption rules that can be
applied to one or more customers. Instead of exempting each customer
individually, you create a group, such as "Resellers" or "Non-profits", give it
reduced or zero override rates, and then associate customers with it through their
contact tax details.

When a customer that belongs to a tax exempt group checks out, tax calculation
resolves the group and applies its exemption, reporting the reduced tax as an
exempt amount in the tax breakdown.

A group's override rates are stored per tax group and tax region on the
associated manual tax mappings, so exemptions are applied by the Wix manual tax
calculator.

## Schema:

```json
 Type: Tax Exempt Group Object | type: TaxExemptGroup
 Description: A tax exempt group is a reusable, named set of tax exemption rules that can be
applied to one or more customers. Instead of exempting each customer
individually, you create a group, such as "Resellers" or "Non-profits", give it
reduced or zero override rates, and then associate customers with it through their
contact tax details.

When a customer that belongs to a tax exempt group checks out, tax calculation
resolves the group and applies its exemption, reporting the reduced tax as an
exempt amount in the tax breakdown.

A group's override rates are stored per tax group and tax region on the
associated manual tax mappings, so exemptions are applied by the Wix manual tax
calculator.
       - name: id  | type: string | description: Tax exempt group ID.
           - name: value  | type: string | description: 
       - name: revision  | type: string | description: Revision number, which increments by 1 each time the tax exempt group is updated. To prevent conflicting changes, the current revision must be passed when updating the tax exempt group.  Ignored when creating a tax exempt group.
           - name: value  | type: string | description: 
       - name: createdDate  | type: string | description: Date and time the tax exempt group was created.
           - name: seconds  | type: string | description: 
           - name: nanos  | type: number | description: 
       - name: updatedDate  | type: string | description: Date and time the tax exempt group was updated.
       - name: name  | type: string | description: Tax exempt group name. For example, `Resellers` or `Non-profits`.
       - name: extendedFields  | type: ExtendedFields | description: Custom field data for the tax exempt group.  [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions.md) must be configured in the app dashboard before they can be accessed with API calls.
           - name: namespaces  | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured.  You can only access fields for which you have the appropriate permissions.  Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md).
       - name: tags  | type: Tags | description: Tags associated with the tax exempt group.
           - name: privateTags  | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors.
               - name: tagIds  | type: Array<string> | description: List of tag IDs.
           - name: publicTags  | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.

```