> 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 # DeleteInventoryItem # Package: catalogV3 # Namespace: InventoryService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/inventory-items-v3/delete-inventory-item.md ## Permission Scopes: Inventory write in v3 catalog: SCOPE.STORES.INVENTORY_ITEM_WRITE ## Introduction Deletes an inventory item. --- ## REST API ### Schema ``` Method: deleteInventoryItem Description: Deletes an inventory item. URL: https://www.wixapis.com/stores/v3/inventory-items/{inventoryItemId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: inventoryItemId Method parameters: param name: inventoryItemId | type: none | required: true Return type: DeleteInventoryItemResponse EMPTY-OBJECT {} ``` ### Examples ### Delete inventory item example - minimum required fields Delete inventory item associated with product, variant, and location. ```curl curl -X DELETE \ 'https://www.wixapis.com/stores/v3/inventory-items/5c8c00a8-799b-4c67-8e43-71e2a4fee5d2' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' \ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.catalogV3.InventoryService.deleteInventoryItem(inventoryItemId) Description: Deletes an inventory item. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: inventoryItemId Method parameters: param name: inventoryItemId | type: string | description: Inventory item GUID. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteInventoryItem ```javascript import { inventoryItemsV3 } from '@wix/stores'; async function deleteInventoryItem(inventoryItemId) { const response = await inventoryItemsV3.deleteInventoryItem(inventoryItemId); }; ``` ### deleteInventoryItem (with elevated permissions) ```javascript import { inventoryItemsV3 } from '@wix/stores'; import { auth } from '@wix/essentials'; async function myDeleteInventoryItemMethod(inventoryItemId) { const elevatedDeleteInventoryItem = auth.elevate(inventoryItemsV3.deleteInventoryItem); const response = await elevatedDeleteInventoryItem(inventoryItemId); } ``` ### deleteInventoryItem (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 deleteInventoryItem(inventoryItemId) { const response = await myWixClient.inventoryItemsV3.deleteInventoryItem(inventoryItemId); }; ``` ---