> 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 # BulkDeleteProjectItems # Package: portfolio # Namespace: ProjectItemsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/portfolio/project-items/bulk-delete-project-items.md ## Introduction Deletes multiple project items. To delete a single project item, call Delete Project Item. --- ## REST API ### Schema ``` Method: bulkDeleteProjectItems Description: Deletes multiple project items. To delete a single project item, call Delete Project Item. URL: https://www.wixapis.com/portfolio/project-items/api/v1/bulk/portfolio/items/delete Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: itemIds Method parameters: query param name: itemIds | type: array | description: IDs of project items to delete. | required: true Return type: BulkDeleteProjectItemsResponse - name: results | type: array | description: List of individual Bulk Delete Project Items results. - name: itemMetadata | type: ItemMetadata | description: Information about the deleted project item. Including its GUID, index in the bulk request and whether it was successfully deleted. - name: id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action was successful for this item. When `false`, the `error` field is populated. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: itemId | type: string | description: GUID of the deleted project item. - name: bulkActionMetadata | type: BulkActionMetadata | description: Total number of successes and failures for Bulk Delete Project Items. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### Bulk Delete Project Items ```curl curl -X DELETE \ 'https://www.wixapis.com/api/v1/bulk/portfolio/items/delete' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ -d '{ "projectId": "f23e4567-e89b-12d3-a456-426614174000", "itemIds": [ "456e7890-e89b-12d3-a456-426614174001", "456e7890-e89b-12d3-a456-426614174002" ] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.portfolio.ProjectItemsService.bulkDeleteProjectItems(options) Description: Deletes multiple project items. To delete a single project item, call Delete Project Item. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: options.itemIds, options Method parameters: param name: options | type: BulkDeleteProjectItemsOptions none | required: true - name: itemIds | type: array | description: IDs of project items to delete. | required: true Return type: PROMISE - name: results | type: array | description: List of individual Bulk Delete Project Items results. - name: itemMetadata | type: ItemMetadata | description: Information about the deleted project item. Including its GUID, index in the bulk request and whether it was successfully deleted. - name: _id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action was successful for this item. When `false`, the `error` field is populated. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: itemId | type: string | description: GUID of the deleted project item. - name: bulkActionMetadata | type: BulkActionMetadata | description: Total number of successes and failures for Bulk Delete Project Items. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### bulkDeleteProjectItems ```javascript import { projectItems } from '@wix/portfolio'; async function bulkDeleteProjectItems(options) { const response = await projectItems.bulkDeleteProjectItems(options); }; ``` ### bulkDeleteProjectItems (with elevated permissions) ```javascript import { projectItems } from '@wix/portfolio'; import { auth } from '@wix/essentials'; async function myBulkDeleteProjectItemsMethod(options) { const elevatedBulkDeleteProjectItems = auth.elevate(projectItems.bulkDeleteProjectItems); const response = await elevatedBulkDeleteProjectItems(options); } ``` ### bulkDeleteProjectItems (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 bulkDeleteProjectItems(options) { const response = await myWixClient.projectItems.bulkDeleteProjectItems(options); }; ``` ---