> 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 # DeleteProjectItem # Package: portfolio # Namespace: ProjectItemsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/portfolio/project-items/delete-project-item.md ## Introduction Deletes a project item. --- ## REST API ### Schema ``` Method: deleteProjectItem Description: Deletes a project item. URL: https://www.wixapis.com/portfolio/project-items/api/v1/portfolio/items/{itemId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: itemId Method parameters: param name: itemId | type: none | required: true Return type: DeleteProjectItemResponse - name: itemId | type: string | description: GUID of the deleted project item. ``` ### Examples ### Delete Project Item ```curl curl -X DELETE \ 'https://www.wixapis.com/portfolio/v1/Items/456e7890-e89b-12d3-a456-426614174001' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.portfolio.ProjectItemsService.deleteProjectItem(itemId) Description: Deletes a project item. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: itemId Method parameters: param name: itemId | type: string | description: GUID of the project item to delete. | required: true Return type: PROMISE - name: itemId | type: string | description: GUID of the deleted project item. ``` ### Examples ### deleteProjectItem ```javascript import { projectItems } from '@wix/portfolio'; async function deleteProjectItem(itemId) { const response = await projectItems.deleteProjectItem(itemId); }; ``` ### deleteProjectItem (with elevated permissions) ```javascript import { projectItems } from '@wix/portfolio'; import { auth } from '@wix/essentials'; async function myDeleteProjectItemMethod(itemId) { const elevatedDeleteProjectItem = auth.elevate(projectItems.deleteProjectItem); const response = await elevatedDeleteProjectItem(itemId); } ``` ### deleteProjectItem (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 { projectItems } from '@wix/portfolio'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { projectItems }, // Include the auth strategy and host as relevant }); async function deleteProjectItem(itemId) { const response = await myWixClient.projectItems.deleteProjectItem(itemId); }; ``` ---