> 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 # DeleteProject # Package: portfolio # Namespace: ProjectsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/portfolio/projects/delete-project.md ## Permission Scopes: Manage Portfolio: SCOPE.PORTFOLIO.MANAGE-PORTFOLIO ## Introduction Deletes a project. --- ## REST API ### Schema ``` Method: deleteProject Description: Deletes a project. URL: https://www.wixapis.com/portfolio/projects/projects/api/v1/portfolio/projects/{projectId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: projectId Method parameters: param name: projectId | type: none | required: true Return type: DeleteProjectResponse - name: projectId | type: string | description: GUID of the deleted project. ``` ### Examples ### Delete Project ```curl curl -X DELETE \ 'https://www.wixapis.com/portfolio/v1/projects/c68c0dc5-088f-4205-b202-3eef797ea0ab' \ -H 'Authorization: ' \ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.portfolio.ProjectsService.deleteProject(projectId) Description: Deletes a project. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: projectId Method parameters: param name: projectId | type: string | description: GUID of the project to delete. | required: true Return type: PROMISE - name: projectId | type: string | description: GUID of the deleted project. ``` ### Examples ### deleteProject ```javascript import { projects } from '@wix/portfolio'; async function deleteProject(projectId) { const response = await projects.deleteProject(projectId); }; ``` ### deleteProject (with elevated permissions) ```javascript import { projects } from '@wix/portfolio'; import { auth } from '@wix/essentials'; async function myDeleteProjectMethod(projectId) { const elevatedDeleteProject = auth.elevate(projects.deleteProject); const response = await elevatedDeleteProject(projectId); } ``` ### deleteProject (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 { projects } from '@wix/portfolio'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { projects }, // Include the auth strategy and host as relevant }); async function deleteProject(projectId) { const response = await myWixClient.projects.deleteProject(projectId); }; ``` ---