> 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 # DeleteSchema # Package: translation # Namespace: TranslationSchema # Method link: https://dev.wix.com/docs/api-reference/business-management/multilingual/translation/translation-schema/delete-schema.md ## Permission Scopes: Wix Multilingual - Translation Schema Write: SCOPE.DC-MULTILINGUAL.WRITE_TRANSLATION_SCHEMA ## Introduction Deletes a translation schema. --- ## REST API ### Schema ``` Method: deleteSchema Description: Deletes a translation schema. URL: https://www.wixapis.com/v1/schemas/{schemaId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: schemaId Method parameters: param name: schemaId | type: none | required: true Return type: DeleteSchemaResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Schema ```curl curl -X DELETE \ 'https://www.wixapis.com/translation-schema/v1/schemas/8046df3c-7575-4098-a5ab-c91ad8f33c47' \ -H 'Authorization: ' \ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.translation.TranslationSchema.deleteSchema(schemaId) Description: Deletes a translation schema. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: schemaId Method parameters: param name: schemaId | type: string | description: GUID of the translation schema to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteSchema ```javascript import { translationSchemas } from '@wix/multilingual'; async function deleteSchema(schemaId) { const response = await translationSchemas.deleteSchema(schemaId); }; ``` ### deleteSchema (with elevated permissions) ```javascript import { translationSchemas } from '@wix/multilingual'; import { auth } from '@wix/essentials'; async function myDeleteSchemaMethod(schemaId) { const elevatedDeleteSchema = auth.elevate(translationSchemas.deleteSchema); const response = await elevatedDeleteSchema(schemaId); } ``` ### deleteSchema (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 { translationSchemas } from '@wix/multilingual'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { translationSchemas }, // Include the auth strategy and host as relevant }); async function deleteSchema(schemaId) { const response = await myWixClient.translationSchemas.deleteSchema(schemaId); }; ``` ---