> ## 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 Chat Messages Feedback Batch

> Get feedback for a batch of AI messages.



## OpenAPI

````yaml post /api/v1/feedback/batch-chat
openapi: 3.1.0
info:
  title: ThenaAgentStudio
  description: |2-

        ThenaCrew AI CRM Renewal System

        An intelligent platform to automate customer renewal insights and communications through multi-agent workflows.

        Key Features:
        * AI-powered renewal analysis
        * Personalized communication generation
        * Automated opportunity tracking
        * Multi-agent workflow orchestration
        
  version: 1.0.0
servers:
  - url: https://agent-studio.thena.ai
    description: Production server
  - url: http://localhost:8008
    description: Local development server
security:
  - ApiKeyAuth: []
tags:
  - name: Agents
    description: Agent management endpoints
  - name: Chat
    description: Chat and messaging endpoints
paths:
  /api/v1/feedback/batch-chat:
    post:
      tags:
        - Feedback
        - Feedback
      summary: Get Chat Messages Feedback Batch
      description: Get feedback for a batch of AI messages.
      operationId: get_chat_messages_feedback_batch_api_v1_feedback_batch_chat_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchFeedbackRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
                title: >-
                  Response Get Chat Messages Feedback Batch Api V1 Feedback
                  Batch Chat Post
        '401':
          description: Unauthorized - Invalid or missing JWT token
        '403':
          description: Forbidden - Insufficient permissions
        '404':
          description: Not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Internal server error
      security:
        - ApiKeyAuth: []
components:
  schemas:
    BatchFeedbackRequest:
      properties:
        message_ids:
          items:
            type: string
            format: uuid
          type: array
          title: Message Ids
        thread_id:
          type: string
          format: uuid
          title: Thread Id
        agent_id:
          type: string
          format: uuid
          title: Agent Id
      type: object
      required:
        - message_ids
        - thread_id
        - agent_id
      title: BatchFeedbackRequest
    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:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````