> ## 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 thena restricted fields

> This endpoint is only available for standard and enterprise tier organizations.



## OpenAPI

````yaml get /v1/custom-field/thena-restricted-fields
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/thena-restricted-fields:
    get:
      tags:
        - Custom fields
      description: >-
        This endpoint is only available for standard and enterprise tier
        organizations.
      parameters:
        - name: teamId
          required: false
          in: query
          description: Filter by specific team ID
          schema:
            example: team_01jb4xm9qr3kv5w8n2p7s9t1
            type: string
        - name: types
          required: false
          in: query
          description: Filter by field types
          schema:
            example:
              - single_line
              - multi_select
            type: array
            items:
              type: string
      responses:
        '200':
          description: Thena restricted fields fetched successfully!
          content:
            application/json:
              example:
                data:
                  - id: trf_01jb4xm9qr3kv5w8n2p7s9t1
                    name: Requestor
                    fieldType: rich_text
                    description: The person who requested the ticket
                  - id: trf_01jb4xm9qr3kv5w8n2p7s9t2
                    name: Assignee
                    fieldType: lookup
                    description: The person assigned to handle the ticket
                  - id: trf_01jb4xm9qr3kv5w8n2p7s9t3
                    name: Status
                    fieldType: single_select
                    description: The current status of the ticket
                status: true
                message: Thena restricted fields fetched successfully!
                timestamp: '2024-01-15T10:30:00Z'
        '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:
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````