> 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 # DeleteBulkDownload # Package: getPaid # Namespace: BulkDownloads # Method link: https://dev.wix.com/docs/api-reference/business-management/get-paid/bulk-downloads/delete-bulk-download.md ## Permission Scopes: Manage Receipts: SCOPE.RECEIPTS.MANAGE ## Introduction Deletes a bulk download. --- ## REST API ### Schema ``` Method: deleteBulkDownload Description: Deletes a bulk download. URL: https://www.wixapis.com/get-paid/v1/bulk-downloads/{bulkDownloadId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: bulkDownloadId Method parameters: param name: bulkDownloadId | type: none | required: true Return type: DeleteBulkDownloadResponse EMPTY-OBJECT {} Possible Errors: HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: USER_ID_NOT_FOUND | Description: User identification GUID is missing. ``` ### Examples ### Delete Bulk Download Deletes a specific bulk download by ID ```curl curl -X DELETE \ 'https://www.wixapis.com/get-paid/v1/bulk-downloads/8046df3c-7575-4098-a5ab-c91ad8f33c47' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.getPaid.BulkDownloads.deleteBulkDownload(bulkDownloadId) Description: Deletes a bulk download. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: bulkDownloadId Method parameters: param name: bulkDownloadId | type: string | description: Bulk download GUID to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} Possible Errors: HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: USER_ID_NOT_FOUND | Description: User identification GUID is missing. ``` ### Examples ### deleteBulkDownload ```javascript import { bulkDownloads } from '@wix/get-paid'; async function deleteBulkDownload(bulkDownloadId) { const response = await bulkDownloads.deleteBulkDownload(bulkDownloadId); }; ``` ### deleteBulkDownload (with elevated permissions) ```javascript import { bulkDownloads } from '@wix/get-paid'; import { auth } from '@wix/essentials'; async function myDeleteBulkDownloadMethod(bulkDownloadId) { const elevatedDeleteBulkDownload = auth.elevate(bulkDownloads.deleteBulkDownload); const response = await elevatedDeleteBulkDownload(bulkDownloadId); } ``` ### deleteBulkDownload (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 { bulkDownloads } from '@wix/get-paid'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { bulkDownloads }, // Include the auth strategy and host as relevant }); async function deleteBulkDownload(bulkDownloadId) { const response = await myWixClient.bulkDownloads.deleteBulkDownload(bulkDownloadId); }; ``` ---