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

# Post csatsubmissions



## OpenAPI

````yaml post /csat/submissions
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:
  /csat/submissions:
    post:
      tags:
        - CSAT Submissions
      operationId: CsatSubmissionController_submitFeedback
      parameters:
        - name: token
          required: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Success - Feedback submitted successfully
          content:
            application/json:
              example:
                success: true
                message: Thank you for your feedback!
        '400':
          description: Bad Request - Survey token is required
          content:
            application/json:
              example:
                statusCode: 400
                message: Survey token is required
                error: Bad Request
        '404':
          description: Survey not found
          content:
            application/json:
              example:
                statusCode: 404
                message: Survey not found or has expired
                error: Not Found
        '500':
          description: Internal Server Error
          content:
            application/json:
              example:
                statusCode: 500
                message: Internal Server Error
                error: Internal Server Error
        '503':
          description: Service Unavailable
          content:
            application/json:
              example:
                statusCode: 503
                message: Service Unavailable
                error: Service Unavailable
components:
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````