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

# Download document changes report

> Deprecated. Use the v2 [Download document changes report](/api-reference/report/download-document-changes-report) endpoint for new development; it accepts the same filters. Downloads a CSV report from the Analytics Reporting Warehouse about documents processed by a Process skill. Each row describes one document, including whether its fields were corrected or its document type was changed during Manual Review. For the full column reference, see [Analytics Reporting Warehouse](/vantage/developer/reporting/analytics-reporting).



## OpenAPI

````yaml /openapi-reporting-v1.json get /api/reporting/v1/qa/process-skills/documents
openapi: 3.0.4
info:
  title: Abbyy.Vantage.Reporting.Service
  description: >-
    Version 1 of the Vantage Reporting API. This version is deprecated and is
    documented for existing integrations only: use the Vantage Reporting API
    (v2) for new development. The v1 QA report endpoints have direct v2
    equivalents, and the synchronous transaction steps report is replaced by the
    asynchronous v2 export workflow starting with [Create transaction steps
    export](/api-reference/report/create-transaction-steps-export). Only users
    with the Tenant Administrator or Processing Supervisor role can download
    data reports. For an overview of the reporting warehouses, see the
    [Reporting service](/vantage/developer/reporting/reporting-service) guide.
  version: '1.0'
  x-application-version: 1.5.2
servers:
  - url: https://vantage-us.abbyy.com
    description: Production United States
  - url: https://vantage-eu.abbyy.com
    description: Production Europe
  - url: https://vantage-au.abbyy.com
    description: Production Australia
security:
  - OAuth2Security:
      - global.wildcard
      - openid
      - permissions
paths:
  /api/reporting/v1/qa/process-skills/documents:
    get:
      tags:
        - Report v1
      summary: Download document changes report
      description: >-
        Deprecated. Use the v2 [Download document changes
        report](/api-reference/report/download-document-changes-report) endpoint
        for new development; it accepts the same filters. Downloads a CSV report
        from the Analytics Reporting Warehouse about documents processed by a
        Process skill. Each row describes one document, including whether its
        fields were corrected or its document type was changed during Manual
        Review. For the full column reference, see [Analytics Reporting
        Warehouse](/vantage/developer/reporting/analytics-reporting).
      operationId: GetDocumentsAsCsv
      parameters:
        - name: startDate
          in: query
          description: Minimum transaction completion date
          schema:
            type: string
        - name: endDate
          in: query
          description: Maximum transaction completion date
          schema:
            type: string
            format: date-time
        - name: processSkillId
          in: query
          description: ID of the process skill used in the transactions
          schema:
            type: string
        - name: imageType
          in: query
          description: Image type of the document, e.g. receipt, business card, etc.
          schema:
            type: string
        - name: imageColority
          in: query
          description: Colority of the document, e.g. color, black and white, etc.
          schema:
            type: string
        - name: imageSource
          in: query
          description: Source of the document, e.g. scan, photo, etc.
          schema:
            type: string
        - name: wasCorrectedInManualReview
          in: query
          description: Only show documents that were corrected during manual review
          schema:
            type: string
        - name: wasDocumentTypeChangedInManualReview
          in: query
          description: >-
            Only show documents, where the document type was changed during
            manual review
          schema:
            type: string
      responses:
        '200':
          description: Document report
          content:
            text/plain:
              schema:
                type: string
                format: binary
            application/json:
              schema:
                type: string
                format: binary
            text/json:
              schema:
                type: string
                format: binary
      deprecated: true
components:
  securitySchemes:
    OAuth2Security:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://vantage-us.abbyy.com/auth2/connect/authorize
          tokenUrl: https://vantage-us.abbyy.com/auth2/connect/token
          scopes:
            global.wildcard: Global wildcard
            openid: User Id
            permissions: User permissions

````