> 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 # DeleteLocale # Package: localeManagement # Namespace: LocalesService # Method link: https://dev.wix.com/docs/api-reference/business-management/multilingual/locale-management/locales/delete-locale.md ## Permission Scopes: Wix Multilingual: SCOPE.MULTILINGUAL.MANAGE_TRANSLATIONS ## Introduction Deletes a locale by ID. This method removes only secondary locales from a site. You can't call this method to delete the primary locale or a locale that's set as the visitor primary locale.
Warning: Deleting a locale permanently removes it and all its associated data from the site.
Tip: - To change the primary locale, call Create New Primary Locale. This method automatically deletes the original primary locale and transfers its data to the new primary locale. - To delete a locale that's set as the visitor primary locale, first call Set Visitor Primary Locale to change the visitor primary locale, then call this method.--- ## REST API ### Schema ``` Method: deleteLocale Description: Deletes a locale by GUID. This method removes only secondary locales from a site. You can't call this method to delete the primary locale or a locale that's set as the visitor primary locale.
Warning: Deleting a locale permanently removes it and all its associated data from the site.
Tip: - To change the primary locale, call Create New Primary Locale. This method automatically deletes the original primary locale and transfers its data to the new primary locale. - To delete a locale that's set as the visitor primary locale, first call Set Visitor Primary Locale to change the visitor primary locale, then call this method.URL: https://www.wixapis.com/v2/locale/{localeId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: localeId Method parameters: param name: localeId | type: none | required: true Return type: DeleteLocaleResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Locale ```curl curl -X DELETE \ 'https://www.wixapis.com/locales/v2/locale/en' \ -H 'Authorization:
Warning: Deleting a locale permanently removes it and all its associated data from the site.
Tip: - To change the primary locale, call Create New Primary Locale. This method automatically deletes the original primary locale and transfers its data to the new primary locale. - To delete a locale that's set as the visitor primary locale, first call Set Visitor Primary Locale to change the visitor primary locale, then call this method.# Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: localeId Method parameters: param name: localeId | type: string | description: GUID of the locale to delete. | required: true Return type: PROMISE