> ## 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.

# Get all custom field types



## OpenAPI

````yaml get /v1/custom-field/types
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/custom-field/types:
    get:
      tags:
        - Custom fields
      description: >-
        This endpoint is only available for standard and enterprise tier
        organizations.
      parameters: []
      responses:
        '200':
          description: Operation successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAllCustomFieldTypesResponse'
        '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:
    GetAllCustomFieldTypesResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/CustomFieldTypesData'
        status:
          type: boolean
        message:
          type: string
        timestamp:
          format: date-time
          type: string
      required:
        - data
        - status
        - message
        - timestamp
    CustomFieldTypesData:
      type: object
      properties:
        text:
          type: array
          items:
            type: string
        numeric:
          type: array
          items:
            type: string
        choice:
          type: array
          items:
            type: string
        date:
          type: array
          items:
            type: string
        user:
          type: array
          items:
            type: string
        specialized:
          type: array
          items:
            type: string
        file:
          type: array
          items:
            type: string
        calculated:
          type: array
          items:
            type: string
        lookup:
          type: array
          items:
            type: string
        geographic:
          type: array
          items:
            type: string
        rating:
          type: array
          items:
            type: string
        toggle:
          type: array
          items:
            type: string
      required:
        - text
        - numeric
        - choice
        - date
        - user
        - specialized
        - file
        - calculated
        - lookup
        - geographic
        - rating
        - toggle
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````