> 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 # BulkDeleteInventoryItems # Package: catalogV3 # Namespace: InventoryService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/inventory-items-v3/bulk-delete-inventory-items.md ## Permission Scopes: Inventory write in v3 catalog: SCOPE.STORES.INVENTORY_ITEM_WRITE ## Introduction Deletes multiple inventory items. --- ## REST API ### Schema ``` Method: bulkDeleteInventoryItems Description: Deletes multiple inventory items. URL: https://www.wixapis.com/stores/v3/bulk/inventory-items/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: inventoryItemIds Method parameters: param name: inventoryItemIds | type: array | description: IDs of inventory items to delete. | required: true Return type: BulkDeleteInventoryItemsResponse - name: results | type: array | description: Inventory items deleted by bulk action. - name: itemMetadata | type: ItemMetadata | description: Bulk action metadata for inventory item. - 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: Bulk action metadata. - 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 inventory items example - minimum required fields Bulk delete inventory items associated with product, variant, and location. ```curl curl -X POST \ 'https://www.wixapis.com/stores/v3/bulk/inventory-items/delete' \ -H 'Content-type: application/json' \ -H 'Authorization: ' \ -d '{ "inventoryItemIds": [ "000c47f6-345a-49ff-8503-c1d26469206f", "00cd5f5b-8a57-45f6-b52f-dd366628d5e7" ] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.catalogV3.InventoryService.bulkDeleteInventoryItems(inventoryItemIds) Description: Deletes multiple inventory items. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: inventoryItemIds Method parameters: param name: inventoryItemIds | type: array | description: IDs of inventory items to delete. | required: true Return type: PROMISE - name: results | type: array | description: Inventory items deleted by bulk action. - name: itemMetadata | type: ItemMetadata | description: Bulk action metadata for inventory item. - 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: Bulk action metadata. - 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 inventory items Delete multiple inventory items by ID ```javascript import { inventoryItemsV3 } from "@wix/stores"; const inventoryItemIds = [ "000c47f6-345a-49ff-8503-c1d26469206f", "00cd5f5b-8a57-45f6-b52f-dd366628d5e7" ]; async function bulkDeleteInventoryItems() { const response = await inventoryItemsV3.bulkDeleteInventoryItems(inventoryItemIds); } /* Promise resolves to: * { * "results": [ * { * "itemMetadata": { * "id": "000c47f6-345a-49ff-8503-c1d26469206f", * "originalIndex": 0, * "success": true * } * }, * { * "itemMetadata": { * "id": "00cd5f5b-8a57-45f6-b52f-dd366628d5e7", * "originalIndex": 1, * "success": true * } * } * ], * "bulkActionMetadata": { * "totalSuccesses": 2, * "totalFailures": 0 * } * } */ ``` ### bulkDeleteInventoryItems (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 { inventoryItemsV3 } from '@wix/stores'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { inventoryItemsV3 }, // Include the auth strategy and host as relevant }); async function bulkDeleteInventoryItems(inventoryItemIds) { const response = await myWixClient.inventoryItemsV3.bulkDeleteInventoryItems(inventoryItemIds); }; ``` ---