> 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 # CreateTag # Package: tags # Namespace: TagsService # Method link: https://dev.wix.com/docs/api-reference/business-management/tags/create-tag.md ## Permission Scopes: Manage Tags: SCOPE.DC-OS.MANAGE-TAGS ## Introduction Creates a tag. --- ## REST API ### Schema ``` Method: createTag Description: Creates a tag. URL: https://www.wixapis.com/tags/v1/tags Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: tag, tag.fqdn, tag.name Method parameters: param name: tag | type: Tag | 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. | required: true Return type: CreateTagResponse - name: tag | type: Tag | description: The created 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. Possible Errors: HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: EXPOSURE_NOT_SUPPORTED | Description: The specified `exposure` value isn't supported for this FQDN. HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: FQDN_NOT_FOUND | Description: Couldn't find the FQDN. HTTP Code: 409 | Status Code: ALREADY_EXISTS | Application Code: TAG_NAME_ALREADY_EXISTS | Description: There is already a tag with this name. HTTP Code: 429 | Status Code: RESOURCE_EXHAUSTED | Application Code: TAGS_REACHED_LIMIT | Description: Number of tags exceeds the server's limit. HTTP Code: 500 | Status Code: INTERNAL | Application Code: CREATE_ID_EXHAUSTED_RETRY_ATTEMPTS | Description: Failed to generate a unique tag GUID after multiple attempts. ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.tags.TagsService.createTag(tag) Description: Creates 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, tag.fqdn, tag.name Method parameters: param name: tag | type: Tag | 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. | required: true 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. Possible Errors: HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: EXPOSURE_NOT_SUPPORTED | Description: The specified `exposure` value isn't supported for this FQDN. HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: FQDN_NOT_FOUND | Description: Couldn't find the FQDN. HTTP Code: 409 | Status Code: ALREADY_EXISTS | Application Code: TAG_NAME_ALREADY_EXISTS | Description: There is already a tag with this name. HTTP Code: 429 | Status Code: RESOURCE_EXHAUSTED | Application Code: TAGS_REACHED_LIMIT | Description: Number of tags exceeds the server's limit. HTTP Code: 500 | Status Code: INTERNAL | Application Code: CREATE_ID_EXHAUSTED_RETRY_ATTEMPTS | Description: Failed to generate a unique tag GUID after multiple attempts. ``` ### Examples ### createTag ```javascript import { tags } from '@wix/tags'; async function createTag(tag) { const response = await tags.createTag(tag); }; ``` ### createTag (with elevated permissions) ```javascript import { tags } from '@wix/tags'; import { auth } from '@wix/essentials'; async function myCreateTagMethod(tag) { const elevatedCreateTag = auth.elevate(tags.createTag); const response = await elevatedCreateTag(tag); } ``` ### createTag (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 createTag(tag) { const response = await myWixClient.tags.createTag(tag); }; ``` ---