> ## 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 transaction steps report

> Deprecated. Synchronously downloads a CSV report of transaction step data from the Business Processing Reporting Warehouse. This endpoint is replaced by the asynchronous v2 export workflow, which handles large date ranges reliably: create an export with [Create transaction steps export](/api-reference/report/create-transaction-steps-export), poll its status, then download the result files. For the CSV column reference, see [Business Processing Reporting](/vantage/developer/reporting/business-reporting).



## OpenAPI

````yaml /openapi-reporting-v1.json get /api/reporting/v1/transaction-steps
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/transaction-steps:
    get:
      tags:
        - Report v1
      summary: Download transaction steps report
      description: >-
        Deprecated. Synchronously downloads a CSV report of transaction step
        data from the Business Processing Reporting Warehouse. This endpoint is
        replaced by the asynchronous v2 export workflow, which handles large
        date ranges reliably: create an export with [Create transaction steps
        export](/api-reference/report/create-transaction-steps-export), poll its
        status, then download the result files. For the CSV column reference,
        see [Business Processing
        Reporting](/vantage/developer/reporting/business-reporting).
      operationId: GetTransactionStepsCsv
      parameters:
        - name: skillId
          in: query
          description: >-
            Filter by transaction skill ID. {NULL} if skill Id filter should not
            be applied
          schema:
            type: string
        - name: transactionId
          in: query
          description: Filter by transaction ID. {NULL} if Id filter should not be applied
          schema:
            type: string
        - name: startDate
          in: query
          description: Minimum transaction date, defined by RFC 3339
          schema:
            type: string
            format: date-time
        - name: endDate
          in: query
          description: Maximum transaction date, defined by RFC 3339 (UtcNow if empty)
          schema:
            type: string
            format: date-time
      responses:
        '200':
          description: Transaction steps
      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

````