> 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 # BulkDeleteConsentConfigs # Package: cookieConsentPolicy # Namespace: ConsentConfigsService # Method link: https://dev.wix.com/docs/api-reference/business-management/cookie-consent-policy/consent-configs/bulk-delete-consent-configs.md ## Permission Scopes: Consent config: SCOPE.CONSENT_CONFIG.MANAGE ## Introduction Deletes multiple consent configs. --- ## REST API ### Schema ``` Method: bulkDeleteConsentConfigs Description: Deletes multiple consent configs. URL: https://www.wixapis.com/bu/legal/v1/bulk/consent-configs/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: consentConfigIds Method parameters: param name: consentConfigIds | type: array | description: Consent config GUIDs to delete. | required: true Return type: BulkDeleteConsentConfigsResponse - name: results | type: array | description: Consent configs deleted by bulk action. - name: itemMetadata | type: ItemMetadata | description: Individual 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 Consent Configs Delete multiple consent configs in a single operation ```curl curl -X POST \ 'https://www.wixapis.com/consent/consent-config/v1/bulk/consent-configs/delete' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ --data-binary '{ "consentConfigIds": [ "334afbf6-5c8b-4b43-9e9e-dd28664ca28f", "445bfcg7-6d9c-5c54-0f0f-ee39775db39g" ] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.cookieConsentPolicy.ConsentConfigsService.bulkDeleteConsentConfigs(consentConfigIds) Description: Deletes multiple consent configs. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: consentConfigIds Method parameters: param name: consentConfigIds | type: array | description: Consent config GUIDs to delete. | required: true Return type: PROMISE - name: results | type: array | description: Consent configs deleted by bulk action. - name: itemMetadata | type: ItemMetadata | description: Individual 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 ### bulkDeleteConsentConfigs ```javascript import { consentConfig } from '@wix/consent-policy'; async function bulkDeleteConsentConfigs(consentConfigIds) { const response = await consentConfig.bulkDeleteConsentConfigs(consentConfigIds); }; ``` ### bulkDeleteConsentConfigs (with elevated permissions) ```javascript import { consentConfig } from '@wix/consent-policy'; import { auth } from '@wix/essentials'; async function myBulkDeleteConsentConfigsMethod(consentConfigIds) { const elevatedBulkDeleteConsentConfigs = auth.elevate(consentConfig.bulkDeleteConsentConfigs); const response = await elevatedBulkDeleteConsentConfigs(consentConfigIds); } ``` ### bulkDeleteConsentConfigs (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 { consentConfig } from '@wix/consent-policy'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { consentConfig }, // Include the auth strategy and host as relevant }); async function bulkDeleteConsentConfigs(consentConfigIds) { const response = await myWixClient.consentConfig.bulkDeleteConsentConfigs(consentConfigIds); }; ``` ---