> 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 # DeleteBillableItem # Package: getPaid # Namespace: BillableItems # Method link: https://dev.wix.com/docs/api-reference/business-management/get-paid/billable-items/delete-billable-item.md ## Permission Scopes: Manage Billable Items: SCOPE.BILLABLE_ITEMS.MANAGE-BILLABLE-ITEMS ## Introduction Permanently deletes a billable item. --- ## REST API ### Schema ``` Method: deleteBillableItem Description: Permanently deletes a billable item. URL: https://www.wixapis.com/billable-items/v1/billable-items/{billableItemId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: billableItemId Method parameters: param name: billableItemId | type: none | required: true Return type: DeleteBillableItemResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Billable Item Deletes a Billable Item ```curl curl -X DELETE \ 'https://www.wixapis.com/billable-items/v1/billable-items/8046df3c-7575-4098-a5ab-c91ad8f33c47' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.getPaid.BillableItems.deleteBillableItem(billableItemId) Description: Permanently deletes a billable item. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: billableItemId Method parameters: param name: billableItemId | type: string | description: Billable item GUID to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteBillableItem ```javascript import { billableItems } from '@wix/get-paid'; async function deleteBillableItem(billableItemId) { const response = await billableItems.deleteBillableItem(billableItemId); }; ``` ### deleteBillableItem (with elevated permissions) ```javascript import { billableItems } from '@wix/get-paid'; import { auth } from '@wix/essentials'; async function myDeleteBillableItemMethod(billableItemId) { const elevatedDeleteBillableItem = auth.elevate(billableItems.deleteBillableItem); const response = await elevatedDeleteBillableItem(billableItemId); } ``` ### deleteBillableItem (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 deleteBillableItem(billableItemId) { const response = await myWixClient.billableItems.deleteBillableItem(billableItemId); }; ``` ---