> 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 # BulkDeleteVariants # Package: items # Namespace: VariantsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/items/item-variants/bulk-delete-variants.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction > **Note:** The Item Variants API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new). Deletes multiple item variants at once. --- ## REST API ### Schema ``` Method: bulkDeleteVariants Description: > **Note:** The Item Variants API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new). Deletes multiple item variants at once. URL: https://www.wixapis.com/restaurants/menus/v1/bulk/variants/delete Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: ids Method parameters: query param name: ids | type: array | description: Item variant GUIDs. | required: true Return type: BulkDeleteVariantsResponse - name: results | type: array | description: Information about the deleted variants. - name: itemMetadata | type: ItemMetadata | description: Metadata for variants deletion. - name: id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action was successful for this item. When `false`, the `error` field is populated. - 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: Metadata for the API call. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### Bulk delete variants Deletes multiple variants in a single request ```curl curl -X DELETE \ 'https://www.wixapis.com/restaurants/menus/item-variants/v1/bulk/variants/delete' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ -d '{ "ids": [ "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "b2c3d4e5-f6g7-8901-bcde-f23456789012", ] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.items.VariantsService.bulkDeleteVariants(ids) Description: > **Note:** The Item Variants API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new). Deletes multiple item variants at once. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: ids Method parameters: param name: ids | type: array | description: Item variant GUIDs. | required: true Return type: PROMISE - name: results | type: array | description: Information about the deleted variants. - name: itemMetadata | type: ItemMetadata | description: Metadata for variants deletion. - name: _id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action was successful for this item. When `false`, the `error` field is populated. - 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: Metadata for the API call. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### bulkDeleteVariants ```javascript import { itemVariants } from '@wix/restaurants'; async function bulkDeleteVariants(ids) { const response = await itemVariants.bulkDeleteVariants(ids); }; ``` ### bulkDeleteVariants (with elevated permissions) ```javascript import { itemVariants } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myBulkDeleteVariantsMethod(ids) { const elevatedBulkDeleteVariants = auth.elevate(itemVariants.bulkDeleteVariants); const response = await elevatedBulkDeleteVariants(ids); } ``` ### bulkDeleteVariants (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 { itemVariants } from '@wix/restaurants'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { itemVariants }, // Include the auth strategy and host as relevant }); async function bulkDeleteVariants(ids) { const response = await myWixClient.itemVariants.bulkDeleteVariants(ids); }; ``` ---