> 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 # BulkDeleteContent # Package: translation # Namespace: TranslationContent # Method link: https://dev.wix.com/docs/api-reference/business-management/multilingual/translation/translation-content/bulk-delete-content.md ## Permission Scopes: Wix Multilingual - Write Translation Content: SCOPE.DC-MULTILINGUAL.WRITE_TRANSLATION_CONTENT ## Introduction Deletes multiple translation content items. --- ## REST API ### Schema ``` Method: bulkDeleteContent Description: Deletes multiple translation content items. URL: https://www.wixapis.com/v1/bulk/contents/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: contentIds Method parameters: param name: contentIds | type: array | description: IDs of the translation content items to delete. | required: true Return type: BulkDeleteContentResponse - name: results | type: array | description: Items created by bulk action. - name: itemMetadata | type: ItemMetadata | description: Item 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: Bulk action metadata. - 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 Content ```curl curl -X POST \ 'https://www.wixapis.com/translation-content/v1/bulk/contents/delete' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ --data-binary '{ "contentIds": [ "3fe09f99-c64d-4205-a9a3-9a112550f4de", "b0da7456-a7b0-4967-be36-d31e32ccec73", "f93c2237-b749-43d0-a043-972e8c738d02", "39636d44-ff62-4de4-8068-43efb2561bbf", "b27f10ac-b451-4fde-ae88-76b91bca69a0" ] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.translation.TranslationContent.bulkDeleteContent(contentIds) Description: Deletes multiple translation content items. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: contentIds Method parameters: param name: contentIds | type: array | description: IDs of the translation content items to delete. | required: true Return type: PROMISE - name: results | type: array | description: Items created by bulk action. - name: itemMetadata | type: ItemMetadata | description: Item 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: Bulk action metadata. - 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 ### bulkDeleteContent ```javascript import { translationContents } from '@wix/multilingual'; async function bulkDeleteContent(contentIds) { const response = await translationContents.bulkDeleteContent(contentIds); }; ``` ### bulkDeleteContent (with elevated permissions) ```javascript import { translationContents } from '@wix/multilingual'; import { auth } from '@wix/essentials'; async function myBulkDeleteContentMethod(contentIds) { const elevatedBulkDeleteContent = auth.elevate(translationContents.bulkDeleteContent); const response = await elevatedBulkDeleteContent(contentIds); } ``` ### bulkDeleteContent (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 { translationContents } from '@wix/multilingual'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { translationContents }, // Include the auth strategy and host as relevant }); async function bulkDeleteContent(contentIds) { const response = await myWixClient.translationContents.bulkDeleteContent(contentIds); }; ``` ---