> 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 # DeleteTag # Package: tags # Namespace: TagsService # Method link: https://dev.wix.com/docs/api-reference/business-management/tags/delete-tag.md ## Permission Scopes: Manage Tags: SCOPE.DC-OS.MANAGE-TAGS ## Introduction Deletes a tag. --- ## REST API ### Schema ``` Method: deleteTag Description: Deletes a tag. URL: https://www.wixapis.com/tags/v1/tags/{tagId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: tagId Method parameters: param name: tagId | type: none | required: true Return type: DeleteTagResponse EMPTY-OBJECT {} ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.tags.TagsService.deleteTag(tagId) Description: Deletes a tag. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: tagId Method parameters: param name: tagId | type: string | description: GUID of the tag to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteTag ```javascript import { tags } from '@wix/tags'; async function deleteTag(tagId) { const response = await tags.deleteTag(tagId); }; ``` ### deleteTag (with elevated permissions) ```javascript import { tags } from '@wix/tags'; import { auth } from '@wix/essentials'; async function myDeleteTagMethod(tagId) { const elevatedDeleteTag = auth.elevate(tags.deleteTag); const response = await elevatedDeleteTag(tagId); } ``` ### deleteTag (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 { tags } from '@wix/tags'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { tags }, // Include the auth strategy and host as relevant }); async function deleteTag(tagId) { const response = await myWixClient.tags.deleteTag(tagId); }; ``` ---