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

# Create Call Tag

> Create a new call tag for organizing and categorizing calls



## OpenAPI

````yaml POST /call_tags
openapi: 3.1.0
info:
  title: Public API v1
  description: >-
    Public API v1 requiring API keys.


    **Timestamps:** All datetime fields in API responses are returned in UTC
    using ISO 8601 format (e.g., `2024-01-15T14:30:00Z`). When filtering by date
    parameters, provide timestamps in ISO 8601 format.
  version: 0.1.0
servers:
  - url: https://api.prod.usesimple.ai/api/v1
    description: Production API Server
security: []
paths:
  /call_tags:
    post:
      tags:
        - Call Tags
      summary: Create Call Tag
      description: Create a new call tag for the organization.
      operationId: create_call_tag_call_tags_post
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CallTagRequest'
      responses:
        '201':
          description: Call Tag Created Successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    default: true
                  call_tag:
                    $ref: '#/components/schemas/CallTagResponse'
                required:
                  - success
                  - call_tag
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    default: false
                  errors:
                    items:
                      type: string
                    type: array
      security:
        - APIKeyHeader: []
components:
  schemas:
    CallTagRequest:
      type: object
      required:
        - name
        - description
        - color
      properties:
        name:
          type: string
          title: Name
          description: The name of the call tag
        description:
          type: string
          title: Description
          description: A description of what this tag represents
        color:
          type: string
          title: Color
          description: 'A hex color code for the tag (e.g., #FF5733)'
          pattern: ^#[0-9A-Fa-f]{6}$
        always_enabled:
          type: boolean
          title: Always Enabled
          description: Whether this tag is always enabled for all calls
          default: false
      title: Call Tag Request
    CallTagResponse:
      type: object
      required:
        - id
        - uuid
        - name
        - description
        - color
        - always_enabled
        - created_at
        - updated_at
      properties:
        id:
          type: string
          format: uuid
          title: ID
          description: Unique identifier for the call tag
        uuid:
          type: string
          format: uuid
          title: UUID
          description: Unique identifier for the call tag
        name:
          type: string
          title: Name
          description: The name of the call tag
        description:
          type: string
          title: Description
          description: A description of what this tag represents
        color:
          type: string
          title: Color
          description: A hex color code for the tag
        always_enabled:
          type: boolean
          title: Always Enabled
          description: Whether this tag is always enabled for all calls
        created_at:
          type: string
          format: date-time
          title: Created At
          description: When the tag was created
        updated_at:
          type: string
          format: date-time
          title: Updated At
          description: When the tag was last updated
      title: Call Tag Response
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: Authorization

````