> 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 # UpdateTag # Package: tags # Namespace: TagsService # Method link: https://dev.wix.com/docs/api-reference/business-management/tags/update-tag.md ## Permission Scopes: Manage Tags: SCOPE.DC-OS.MANAGE-TAGS ## Introduction Updates a tag. --- ## REST API ### Schema ``` Method: updateTag Description: Updates a tag. URL: https://www.wixapis.com/tags/v1/tags/{tag.id} Method: PATCH # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: tag, tag.id, tag.revision, tag.name Method parameters: param name: tag | type: Tag | required: true - name: id | type: string | description: Tag GUID. | required: true - name: revision | type: string | description: Revision number, which increments by 1 each time the tag is updated. | required: true - name: name | type: string | description: Tag name. | required: true - name: fqdn | type: string | description: FQDN of the entity that belongs to this tag. Return type: UpdateTagResponse - name: tag | type: Tag | description: The updated tag. - name: id | type: string | description: Tag GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the tag is updated. - name: createdDate | type: string | description: Date and time the tag was created. - name: updatedDate | type: string | description: Date and time the tag was last updated. - name: name | type: string | description: Tag name. - name: fqdn | type: string | description: FQDN of the entity that belongs to this tag. ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.tags.TagsService.updateTag(_id, tag) Description: Updates a tag. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: tag, _id, tag.revision, tag.name Method parameters: param name: _id | type: string | description: Tag GUID. | required: true param name: tag | type: Tag | required: true - name: revision | type: string | description: Revision number, which increments by 1 each time the tag is updated. | required: true - name: name | type: string | description: Tag name. | required: true - name: fqdn | type: string | description: FQDN of the entity that belongs to this tag. Return type: PROMISE - name: _id | type: string | description: Tag GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the tag is updated. - name: _createdDate | type: Date | description: Date and time the tag was created. - name: _updatedDate | type: Date | description: Date and time the tag was last updated. - name: name | type: string | description: Tag name. - name: fqdn | type: string | description: FQDN of the entity that belongs to this tag. ``` ### Examples ### updateTag ```javascript import { tags } from '@wix/tags'; async function updateTag(_id,tag) { const response = await tags.updateTag(_id,tag); }; ``` ### updateTag (with elevated permissions) ```javascript import { tags } from '@wix/tags'; import { auth } from '@wix/essentials'; async function myUpdateTagMethod(_id,tag) { const elevatedUpdateTag = auth.elevate(tags.updateTag); const response = await elevatedUpdateTag(_id,tag); } ``` ### updateTag (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 updateTag(_id,tag) { const response = await myWixClient.tags.updateTag(_id,tag); }; ``` ---