> 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: portfolio # Namespace: CollectionsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/portfolio/collections/delete-collection.md ## Permission Scopes: Manage Portfolio: SCOPE.PORTFOLIO.MANAGE-PORTFOLIO ## Introduction Deletes a collection. --- ## REST API ### Schema ``` Method: deleteCollection Description: Deletes a collection. URL: https://www.wixapis.com/portfolio/collections/api/v1/portfolio/collections/{collectionId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: collectionId Method parameters: param name: collectionId | type: none | required: true Return type: DeleteCollectionResponse - name: collectionId | type: string | description: GUID of the deleted collection. ``` ### Examples ### Delete Collection ```curl curl -X DELETE \ 'https://www.wixapis.com/portfolio/v1/collections/123e4567-e89b-12d3-a456-426614174000' \ -H 'Authorization: ' \ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.portfolio.CollectionsService.deleteCollection(collectionId) 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: collectionId Method parameters: param name: collectionId | type: string | description: GUID of the collection to delete. | required: true Return type: PROMISE - name: collectionId | type: string | description: GUID of the deleted collection. ``` ### Examples ### deleteCollection ```javascript import { collections } from '@wix/portfolio'; async function deleteCollection(collectionId) { const response = await collections.deleteCollection(collectionId); }; ``` ### deleteCollection (with elevated permissions) ```javascript import { collections } from '@wix/portfolio'; import { auth } from '@wix/essentials'; async function myDeleteCollectionMethod(collectionId) { const elevatedDeleteCollection = auth.elevate(collections.deleteCollection); const response = await elevatedDeleteCollection(collectionId); } ``` ### 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 { collections } from '@wix/portfolio'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { collections }, // Include the auth strategy and host as relevant }); async function deleteCollection(collectionId) { const response = await myWixClient.collections.deleteCollection(collectionId); }; ``` ---