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

# Get feedback for a document extraction



## OpenAPI

````yaml /openapi.json get /document-extractions/{documentId}/feedback
openapi: 3.0.0
info:
  title: Korint Documentation
  description: Korint API Documentation
  version: 1.0.0
  contact: {}
servers: []
security:
  - bearerAuth: []
tags: []
paths:
  /document-extractions/{documentId}/feedback:
    get:
      tags:
        - document-extractions
      summary: Get feedback for a document extraction
      operationId: DocumentExtractionController_getExtractionFeedback
      parameters:
        - name: documentId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetExtractionFeedbackOutput'
components:
  schemas:
    GetExtractionFeedbackOutput:
      type: object
      properties:
        feedback:
          description: List of feedback items for the document
          type: array
          items:
            $ref: '#/components/schemas/ExtractionFeedbackItemDto'
      required:
        - feedback
    ExtractionFeedbackItemDto:
      type: object
      properties:
        feedbackId:
          type: string
          description: Feedback ID
        feedbackType:
          type: string
          description: Feedback type
          enum:
            - FIELD_CORRECTION
            - FIELD_VALIDATION
            - DOCUMENT_REJECTION
        fieldKey:
          type: string
          description: Field key
        originalValue:
          type: string
          description: Original value
        correctedValue:
          type: string
          description: Corrected value
        comment:
          type: string
          description: User comment
        userId:
          type: string
          description: User ID who provided feedback
        createdAt:
          type: string
          description: Feedback creation timestamp
      required:
        - feedbackId
        - feedbackType
        - userId
        - createdAt

````