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

# Submit Feedback



## OpenAPI

````yaml POST /v1/feedback
openapi: 3.0.0
info:
  title: Wardin API
  description: AI governance & observability platform — external REST API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/feedback:
    post:
      tags:
        - feedback
      summary: Submit explicit feedback (thumbs up/down) for a request or session
      operationId: FeedbackController_submit
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmitFeedbackDto'
      responses:
        '201':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    SubmitFeedbackDto:
      type: object
      properties:
        traceId:
          type: string
          description: Link to a specific trace
        sessionId:
          type: string
          description: Link to a session
        virtualKeyId:
          type: string
          description: Target key — resolved from traceId/sessionId when omitted
        score:
          type: number
          enum:
            - -1
            - 1
          description: Thumbs up (+1) or thumbs down (-1)
      required:
        - score
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````