> 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

# BulkDeleteTaxExemptGroups

# Package: tax

# Namespace: TaxExemptGroups

# Method link: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/extensions/tax/tax-exempt-groups/bulk-delete-tax-exempt-groups.md

## Permission Scopes:
Manage Orders: SCOPE.DC-STORES.MANAGE-ORDERS

## Introduction

Deletes multiple tax exempt groups in a single request.

To delete a single tax exempt group, call [Delete Tax Exempt Group](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/extensions/tax/tax-exempt-groups/delete-tax-exempt-group.md).

---

## REST API

### Schema

```
 Method: bulkDeleteTaxExemptGroups
 Description: Deletes multiple tax exempt groups in a single request.  To delete a single tax exempt group, call [Delete Tax Exempt Group](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/extensions/tax/tax-exempt-groups/delete-tax-exempt-group.md).
 URL: https://www.wixapis.com/billing/v1/bulk/tax-exempt-groups/delete
 Method: POST
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  taxExemptGroupIds
 Method parameters: 
   param name: taxExemptGroupIds | type: array<taxExemptGroupIds> | description: IDs of the tax exempt groups to delete. | required: true | validation: minItems 1, maxItems 100, format GUID
 Return type: BulkDeleteTaxExemptGroupsResponse
  - name: results | type: array<BulkTaxExemptGroupResult> | description: Results of the bulk delete operation.  | validation: minItems 1, maxItems 100
     - name: itemMetadata | type: ItemMetadata | description: Metadata for the single delete operation.  
        - name: id | type: string | description: Item GUID. Provided only whenever possible. For example, `itemId` can't be provided when item creation has failed.  | validation: format GUID
        - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items.  | validation: minimum 0
        - name: success | type: boolean | description: Whether the requested action for this item was successful. When `false`, the `error` field is returned.  
        - name: error | type: ApplicationError | description: Details about the error in case of failure.  
           - name: code | type: string | description: Error code.  
           - name: description | type: string | description: Description of the error.  
           - name: data | type: object | description: Data related to the error.  
  - name: bulkActionMetadata | type: BulkActionMetadata | description: Bulk delete operation metadata.  
     - name: totalSuccesses | type: integer | description: Number of items that were successfully processed.  | validation: minimum 0
     - name: totalFailures | type: integer | description: Number of items that couldn't be processed.  | validation: minimum 0
     - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded.  | validation: minimum 0


```

### Examples

### Bulk Delete Tax Exempt Groups
Deletes multiple tax exempt groups in a single request.

```curl
curl -X POST \
    'https://www.wixapis.com/billing/v1/bulk/tax-exempt-groups/delete' \
    -H 'Authorization: <AUTH>' \
    -H 'Content-Type: application/json' \
    -d '{
    "taxExemptGroupIds": [
      "8046df3c-7575-4098-a5ab-c91ad8f33c47",
      "9157e04d-8686-4109-b6bc-d02be944d158"
    ]
  }'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.ecom.taxExemptGroups.bulkDeleteTaxExemptGroups(taxExemptGroupIds)
 Description: Deletes multiple tax exempt groups in a single request.  To delete a single tax exempt group, call [Delete Tax Exempt Group](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/extensions/tax/tax-exempt-groups/delete-tax-exempt-group.md).
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  taxExemptGroupIds
 Method parameters: 
   param name: taxExemptGroupIds | type: array<array> | description: IDs of the tax exempt groups to delete. | required: true | validation: minItems 1, maxItems 100, format GUID
 Return type: PROMISE<BulkDeleteTaxExemptGroupsResponse>
  - name: results | type: array<BulkTaxExemptGroupResult> | description: Results of the bulk delete operation.  | validation: minItems 1, maxItems 100
     - name: itemMetadata | type: ItemMetadata | description: Metadata for the single delete operation.  
        - name: _id | type: string | description: Item GUID. Provided only whenever possible. For example, `itemId` can't be provided when item creation has failed.  | validation: format GUID
        - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items.  | validation: minimum 0
        - name: success | type: boolean | description: Whether the requested action for this item was successful. When `false`, the `error` field is returned.  
        - name: error | type: ApplicationError | description: Details about the error in case of failure.  
           - name: code | type: string | description: Error code.  
           - name: description | type: string | description: Description of the error.  
           - name: data | type: object | description: Data related to the error.  
  - name: bulkActionMetadata | type: BulkActionMetadata | description: Bulk delete operation metadata.  
     - name: totalSuccesses | type: integer | description: Number of items that were successfully processed.  | validation: minimum 0
     - name: totalFailures | type: integer | description: Number of items that couldn't be processed.  | validation: minimum 0
     - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded.  | validation: minimum 0


```

### Examples

### bulkDeleteTaxExemptGroups
```javascript
import { taxExemptGroups } from '@wix/ecom';

async function bulkDeleteTaxExemptGroups(taxExemptGroupIds) {
  const response = await taxExemptGroups.bulkDeleteTaxExemptGroups(taxExemptGroupIds);
};
```

### bulkDeleteTaxExemptGroups (with elevated permissions)
```javascript
import { taxExemptGroups } from '@wix/ecom';
import { auth } from '@wix/essentials';

async function myBulkDeleteTaxExemptGroupsMethod(taxExemptGroupIds) {
  const elevatedBulkDeleteTaxExemptGroups = auth.elevate(taxExemptGroups.bulkDeleteTaxExemptGroups);
  const response = await elevatedBulkDeleteTaxExemptGroups(taxExemptGroupIds);
}
```

### bulkDeleteTaxExemptGroups (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 { taxExemptGroups } from '@wix/ecom';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

const myWixClient = createClient ({
  modules: { taxExemptGroups },
  // Include the auth strategy and host as relevant
});


async function bulkDeleteTaxExemptGroups(taxExemptGroupIds) {
  const response = await myWixClient.taxExemptGroups.bulkDeleteTaxExemptGroups(taxExemptGroupIds);
};
```

---