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

# Debug Get Frontend Actions

> Debug the get_frontend_actions function.

Args:
    request (FrontendActionsDebugRequest): The debug request parameters.

Returns:
    DebugFunctionResponse: The function execution result.



## OpenAPI

````yaml https://dev-api.cattix.com/openapi.json post /api/v1/debug/assistant-functions/get-frontend-actions
openapi: 3.1.0
info:
  title: CATTIX API
  description: CATTIX Backend API
  version: 0.107.0
servers:
  - url: http://localhost:8000
    description: Local
  - url: https://dev-api.cattix.com
    description: Development
  - url: https://staging-api.cattix.com
    description: Staging
  - url: https://api.cattix.com
    description: Production
security: []
paths:
  /api/v1/debug/assistant-functions/get-frontend-actions:
    post:
      tags:
        - Debug
      summary: Debug Get Frontend Actions
      description: |-
        Debug the get_frontend_actions function.

        Args:
            request (FrontendActionsDebugRequest): The debug request parameters.

        Returns:
            DebugFunctionResponse: The function execution result.
      operationId: >-
        debug_get_frontend_actions_api_v1_debug_assistant_functions_get_frontend_actions_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FrontendActionsDebugRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DebugFunctionResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    FrontendActionsDebugRequest:
      properties: {}
      type: object
      title: FrontendActionsDebugRequest
      description: Schema for debugging get_frontend_actions function.
    DebugFunctionResponse:
      properties:
        success:
          type: boolean
          title: Success
          description: Whether the function executed successfully
        data:
          type: string
          title: Data
          description: JSON string containing the function result or error information
        execution_time_ms:
          anyOf:
            - type: number
            - type: 'null'
          title: Execution Time Ms
          description: Function execution time in milliseconds
      type: object
      required:
        - success
        - data
      title: DebugFunctionResponse
      description: Schema for debug function responses.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: api/v1/users/authorization/token

````