> 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 # DeleteCollection # Package: catalogV1 # Namespace: CatalogWriteApi # Method link: https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v1/catalog/delete-collection.md ## Permission Scopes: Manage Products: SCOPE.DC-STORES.MANAGE-PRODUCTS ## Introduction Deletes a collection. --- ## REST API ### Schema ``` Method: deleteCollection Description: Deletes a collection. URL: https://www.wixapis.com/stores/v1/collections/{id} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: id Method parameters: param name: id | type: none | required: true Return type: DeleteCollectionResponse EMPTY-OBJECT {} ``` ### Examples ### DeleteCollection ```curl ~~~cURL curl -X DELETE \ 'https://www.wixapis.com/stores/v1/collections/81093e7d-a251-4a22-a238-df3aa816f3dc' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.catalogV1.CatalogWriteApi.deleteCollection(_id) Description: Deletes a collection. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: _id Method parameters: param name: _id | type: string | description: GUID of the collection to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteCollection ```javascript import { products } from '@wix/stores'; async function deleteCollection(_id) { const response = await products.deleteCollection(_id); }; ``` ### deleteCollection (with elevated permissions) ```javascript import { products } from '@wix/stores'; import { auth } from '@wix/essentials'; async function myDeleteCollectionMethod(_id) { const elevatedDeleteCollection = auth.elevate(products.deleteCollection); const response = await elevatedDeleteCollection(_id); } ``` ### deleteCollection (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 { products } from '@wix/stores'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { products }, // Include the auth strategy and host as relevant }); async function deleteCollection(_id) { const response = await myWixClient.products.deleteCollection(_id); }; ``` ---