> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thena.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a new tag for a particular team



## OpenAPI

````yaml post /v1/teams/{teamUuid}/tags
openapi: 3.0.0
info:
  title: Thena Platform
  description: The Thena Platform API description
  version: 1.0.0
  contact: {}
servers:
  - url: https://platform.thena.ai
    description: Platform
  - url: http://localhost:8000
    description: Local
security:
  - ApiKey: []
tags: []
paths:
  /v1/teams/{teamUuid}/tags:
    post:
      tags:
        - Tags
      summary: Create a new tag for a particular team
      parameters:
        - name: teamUuid
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateTagDto'
      responses:
        '201':
          description: Operation successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateTagsResponse'
        '401':
          description: User is not authenticated!
        '403':
          description: User does not have access to this resource!
        '404':
          description: Resource not found!
        '429':
          description: Too many requests!
        '500':
          description: Something went wrong!
        '503':
          description: This service/resource is currently unavailable.
components:
  schemas:
    CreateTagDto:
      type: object
      properties:
        name:
          type: string
          description: The name of the tag
          example: Cat
          minLength: 1
          maxLength: 50
        color:
          type: string
          description: Color in hexadecimal format
          example: '#FF0000'
          pattern: ^#([A-Fa-f0-9]{6})$
        tagType:
          type: string
          description: The type of the tag
          enum:
            - ticket
            - skills
        description:
          type: string
          description: Optional description of the tag
          nullable: true
      required:
        - name
        - color
        - tagType
    CreateTagsResponse:
      type: object
      properties:
        status:
          type: boolean
          default: true
          description: The status of the response
        message:
          type: string
          default: Success
          description: The message of the response
        timestamp:
          format: date-time
          type: string
          default: '2024-01-01T00:00:00.000Z'
          description: The timestamp of the response
        teamUuid:
          type: string
          description: The team ID
        data:
          description: Creates tags for a particular team.
          allOf:
            - $ref: '#/components/schemas/TagListDto'
      required:
        - status
        - message
        - timestamp
        - teamUuid
        - data
    TagListDto:
      type: object
      properties:
        count:
          type: number
          description: Number of tags
        items:
          description: List of tags
          type: array
          items:
            $ref: '#/components/schemas/Tag'
      required:
        - count
        - items
    Tag:
      type: object
      properties: {}
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````