> 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 # BulkDeleteBillableItems # Package: getPaid # Namespace: BillableItems # Method link: https://dev.wix.com/docs/api-reference/business-management/get-paid/billable-items/bulk-delete-billable-items.md ## Permission Scopes: Manage Billable Items: SCOPE.BILLABLE_ITEMS.MANAGE-BILLABLE-ITEMS ## Introduction Delete multiple billable items. --- ## REST API ### Schema ``` Method: bulkDeleteBillableItems Description: Delete multiple billable items. URL: https://www.wixapis.com/billable-items/v1/bulk/billable-items/delete Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: billableItemIds Method parameters: param name: billableItemIds | type: array | description: Billable item GUIDs to delete. | required: true Return type: BulkDeleteBillableItemsResponse - name: results | type: array | description: Billable items delete operation results including metadata. - name: itemMetadata | type: ItemMetadata | description: Billable item's delete operation metadata. - 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: bulkActionMetadata | type: BulkActionMetadata | description: Metadata regarding the bulk delete operation. - 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 Billable Items Deletes multiple Billable Items ```curl curl -X POST \ 'https://www.wixapis.com/billable-items/v1/bulk/billable-items/delete' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ --data-binary '{ "billableItemIds": [ "8046df3c-7575-4098-a5ab-c91ad8f33c47", "9157ef4d-8686-5109-b967-d92be8f44c58" ] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.getPaid.BillableItems.bulkDeleteBillableItems(billableItemIds) Description: Delete multiple billable items. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: billableItemIds Method parameters: param name: billableItemIds | type: array | description: Billable item GUIDs to delete. | required: true Return type: PROMISE - name: results | type: array | description: Billable items delete operation results including metadata. - name: itemMetadata | type: ItemMetadata | description: Billable item's delete operation metadata. - 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: bulkActionMetadata | type: BulkActionMetadata | description: Metadata regarding the bulk delete operation. - 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 ### bulkDeleteBillableItems ```javascript import { billableItems } from '@wix/get-paid'; async function bulkDeleteBillableItems(billableItemIds) { const response = await billableItems.bulkDeleteBillableItems(billableItemIds); }; ``` ### bulkDeleteBillableItems (with elevated permissions) ```javascript import { billableItems } from '@wix/get-paid'; import { auth } from '@wix/essentials'; async function myBulkDeleteBillableItemsMethod(billableItemIds) { const elevatedBulkDeleteBillableItems = auth.elevate(billableItems.bulkDeleteBillableItems); const response = await elevatedBulkDeleteBillableItems(billableItemIds); } ``` ### bulkDeleteBillableItems (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 { billableItems } from '@wix/get-paid'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { billableItems }, // Include the auth strategy and host as relevant }); async function bulkDeleteBillableItems(billableItemIds) { const response = await myWixClient.billableItems.bulkDeleteBillableItems(billableItemIds); }; ``` ---