> 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
# BulkDeleteLocales
# Package: localeManagement
# Namespace: LocalesService
# Method link: https://dev.wix.com/docs/api-reference/business-management/multilingual/locale-management/locales/bulk-delete-locales.md
## Permission Scopes:
Wix Multilingual: SCOPE.MULTILINGUAL.MANAGE_TRANSLATIONS
## Introduction
Deletes multiple locales.
This method removes only secondary locals from a site. The primary locale can't be deleted.
Warning:
This method permanently deletes multiple secondary locales and their data from the site.
---
## REST API
### Schema
```
Method: bulkDeleteLocales
Description: Deletes multiple locales. This method removes only secondary locals from a site. The primary locale can't be deleted. Warning: This method permanently deletes multiple secondary locales and their data from the site.
URL: https://www.wixapis.com/v2/bulk/locale/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: localeIds
Method parameters:
param name: localeIds | type: array | description: IDs of locales to delete. | required: true
Return type: BulkDeleteLocalesResponse
- name: results | type: array | description: Information about the deleted locales.
- 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 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 Locales
```curl
curl -X POST \
'https://www.wixapis.com/locales/v2/bulk/locale/delete' \
-H 'Authorization: ' \
-H 'Content-Type: application/json' \
--data-binary '{
"localeIds": ["en"]
}'
```
---
## JavaScript SDK
### Schema
```
Method: wixClientAdmin.localeManagement.LocalesService.bulkDeleteLocales(localeIds)
Description: Deletes multiple locales. This method removes only secondary locals from a site. The primary locale can't be deleted. Warning: This method permanently deletes multiple secondary locales and their data from the site.
# Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
Required parameters: localeIds
Method parameters:
param name: localeIds | type: array | description: IDs of locales to delete. | required: true
Return type: PROMISE
- name: results | type: array | description: Information about the deleted locales.
- 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 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
### bulkDeleteLocales
```javascript
import { locales } from '@wix/multilingual';
async function bulkDeleteLocales(localeIds) {
const response = await locales.bulkDeleteLocales(localeIds);
};
```
### bulkDeleteLocales (with elevated permissions)
```javascript
import { locales } from '@wix/multilingual';
import { auth } from '@wix/essentials';
async function myBulkDeleteLocalesMethod(localeIds) {
const elevatedBulkDeleteLocales = auth.elevate(locales.bulkDeleteLocales);
const response = await elevatedBulkDeleteLocales(localeIds);
}
```
### bulkDeleteLocales (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 { locales } from '@wix/multilingual';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed
const myWixClient = createClient ({
modules: { locales },
// Include the auth strategy and host as relevant
});
async function bulkDeleteLocales(localeIds) {
const response = await myWixClient.locales.bulkDeleteLocales(localeIds);
};
```
---