> ## 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 export result file

> Downloads one CSV result file of a completed transaction steps export. Each row is one processing step of a transaction, such as OCR, classification, or Manual Review. Result files are stored for 2 weeks after the export request completes.



## OpenAPI

````yaml /openapi-reporting.json get /api/reporting/v2/exports/transaction-steps/{requestId}/result/{fileIndex}
openapi: 3.0.4
info:
  title: Abbyy.Vantage.Reporting.Service
  description: >-
    The Vantage Reporting API provides data for retrospective analysis of
    document processing. Use it to download CSV reports from the Business
    Processing Reporting Warehouse (transaction-level step data) and the
    Analytics Reporting Warehouse (document and field changes made during Manual
    Review). Only users with the Tenant Administrator or Processing Supervisor
    role can download data reports. For an overview of both warehouses, see the
    [Reporting service](/vantage/developer/reporting/reporting-service) guide.
  version: '2.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/v2/exports/transaction-steps/{requestId}/result/{fileIndex}:
    get:
      tags:
        - Report
      summary: Download export result file
      description: >-
        Downloads one CSV result file of a completed transaction steps export.
        Each row is one processing step of a transaction, such as OCR,
        classification, or Manual Review. Result files are stored for 2 weeks
        after the export request completes.
      operationId: GetExportResult
      parameters:
        - name: requestId
          in: path
          required: true
          schema:
            type: string
          description: >-
            ID of the export request, as returned in the response when the
            export was created.
        - name: fileIndex
          in: path
          required: true
          schema:
            type: integer
            format: int32
          description: >-
            Zero-based index of the result file to download. The
            `totalFileCount` value from the status response gives the number of
            available files, so valid indexes run from `0` to `totalFileCount -
            1`.
      responses:
        '200':
          description: >-
            Returns one result file of a succeeded export request as a CSV file
            with a header row. Each row describes one processing step of a
            transaction. Download one file per `fileIndex`, from 0 up to
            `totalFileCount - 1` reported by the status endpoint. For the full
            column reference, see [Business Processing
            Reporting](/vantage/developer/reporting/business-reporting).
          content:
            text/plain:
              schema:
                type: string
                format: binary
              example: >-
                SkillId,SkillVersion,SkillName,TransactionId,StepName,StepType,ManualReviewOperatorName,ManualReviewOperatorEmail,StartedUtc,CompletedUtc,Status,Duration,DocumentsCount,PagesCount,document_SourceFileName,transaction_App

                d0e27b2d-...,1,Redaction
                Test,6d7e9eeb-...,Input,Input,,,11/17/2025 19:37:52,11/17/2025
                19:38:01,FinishedSuccessfully,9,,,Invoice CA_2.pdf,PublicAPI

                d0e27b2d-...,1,Redaction Test,6d7e9eeb-...,OCR,Ocr,,,11/17/2025
                19:38:02,11/17/2025 19:38:17,FinishedSuccessfully,15,,,Invoice
                CA_2.pdf,PublicAPI
            application/json:
              schema:
                type: string
                format: binary
            text/json:
              schema:
                type: string
                format: binary
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

````