> ## 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.

# Gets transaction info

> Gets the details of the transaction, including the link to the results if processing has finished, or the manual
review link if manual review is needed.



## OpenAPI

````yaml /openapi.json get /api/publicapi/v1/transactions/{transactionId}
openapi: 3.0.1
info:
  title: Vantage processing REST API
  description: >-
    The Vantage Processing REST API lets you process documents programmatically:
    create transactions, upload files, launch skills, monitor progress, and
    download results. For authentication and a first end-to-end request, see the
    [Getting started guide](/vantage/developer/getting-started).
  version: '1.0'
  x-application-version: 1.0.0-20251028.13+6e102d0c2a7a440df9ee9615e09b3c8c333587ac
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/publicapi/v1/transactions/{transactionId}:
    get:
      tags:
        - Transactions
      summary: Gets transaction info
      description: "Gets the details of the transaction, including the link to the results if processing has finished, or the manual\r\nreview link if manual review is needed."
      operationId: GetTransactionInfo
      parameters:
        - name: transactionId
          in: path
          description: "Transaction identifier. You receive it in the response after the transaction has been\r\nsuccessfully created."
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Transaction info is successfully returned
          content:
            text/plain:
              schema:
                $ref: >-
                  #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.Results.TransactionDto
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.Results.TransactionDto
            text/json:
              schema:
                $ref: >-
                  #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.Results.TransactionDto
        '403':
          description: Forbidden
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '404':
          description: Transaction not found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
components:
  schemas:
    Abbyy.Vantage.PublicApi.Contract.Transactions.Results.TransactionDto:
      required:
        - id
        - status
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier of the transaction.
        status:
          $ref: >-
            #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.TransactionStatus
          description: >-
            Current status of the transaction. One of `New`, `Processing`,
            `Processed`, `Failed`, or `Canceled`.
        manualReviewLink:
          type: string
          nullable: true
          description: >-
            Link to the Manual Review client with a one-time access token,
            returned when the transaction requires manual review. The link is
            valid for 168 hours. See [Integrating manual
            review](/vantage/developer/integrating-manual-review).
        documents:
          type: array
          items:
            $ref: >-
              #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.Results.ExtractedDocumentDto
          nullable: true
          description: >-
            Documents produced by the transaction, each with its result files,
            classification result, and business rule errors.
        error:
          type: string
          nullable: true
          description: Error message describing why the transaction failed, if it failed.
        sourceFiles:
          type: array
          items:
            $ref: >-
              #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.Results.FileDto
          nullable: true
          description: Source files that were uploaded to the transaction.
      additionalProperties: false
    Microsoft.AspNetCore.Mvc.ProblemDetails:
      type: object
      properties:
        type:
          type: string
          nullable: true
          description: URI reference that identifies the problem type.
        title:
          type: string
          nullable: true
          description: Short, human-readable summary of the problem type.
        status:
          type: integer
          format: int32
          nullable: true
          description: HTTP status code for this occurrence of the problem.
        detail:
          type: string
          nullable: true
          description: >-
            Human-readable explanation specific to this occurrence of the
            problem.
        instance:
          type: string
          nullable: true
          description: >-
            URI reference that identifies this specific occurrence of the
            problem.
      additionalProperties: {}
    Abbyy.Vantage.PublicApi.Contract.Transactions.TransactionStatus:
      enum:
        - New
        - Processing
        - Processed
        - Failed
        - Canceled
      type: string
    Abbyy.Vantage.PublicApi.Contract.Transactions.Results.ExtractedDocumentDto:
      required:
        - id
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier of the document within the transaction.
        resultFiles:
          type: array
          items:
            $ref: >-
              #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.Results.ResultFileDto
          description: Will be empty for classification skill
          nullable: true
        classification:
          $ref: >-
            #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.Results.ClassificationDto
          description: >-
            Classification result for the document. Returned when the applied
            skill performs classification.
        businessRulesErrors:
          type: array
          items:
            $ref: >-
              #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.Results.DocumentBusinessRulesErrorDto
          nullable: true
          description: >-
            Business rule errors raised while processing the document. Empty
            when all rules passed.
      additionalProperties: false
    Abbyy.Vantage.PublicApi.Contract.Transactions.Results.FileDto:
      required:
        - id
        - name
      type: object
      properties:
        id:
          minLength: 1
          type: string
          description: Unique identifier of the file
        name:
          minLength: 1
          type: string
          description: Name of the file. Must be unique to transaction
      additionalProperties: false
    Abbyy.Vantage.PublicApi.Contract.Transactions.Results.ResultFileDto:
      required:
        - fileId
        - fileName
        - type
      type: object
      properties:
        fileId:
          minLength: 1
          type: string
          description: Uuid in storage
        fileName:
          minLength: 1
          type: string
          description: 'Predefined scheme: [documents skill name].[extension]'
        type:
          $ref: >-
            #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.ResultFileType
          description: >-
            Format of the result file, for example `Json`, `Pdf`, `Xlsx`, or
            `OcrJson`. The formats produced depend on the export settings of the
            skill. See [Output file
            types](/vantage/developer/output/output-file-types).
      additionalProperties: false
    Abbyy.Vantage.PublicApi.Contract.Transactions.Results.ClassificationDto:
      required:
        - classConfidences
        - isResultClassConfident
        - resultClass
      type: object
      properties:
        isResultClassConfident:
          type: boolean
          description: >-
            Indicates whether the document was assigned to the result class with
            sufficient confidence.
        resultClass:
          $ref: >-
            #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.Results.ClassDto
          description: Class that the classification skill assigned to the document.
        classConfidences:
          type: array
          items:
            $ref: >-
              #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Transactions.Results.ClassificationConfidenceDto
          description: >-
            List of all classes available in the applied classification skill,
            together with the classification confidence for each class.
      additionalProperties: false
    Abbyy.Vantage.PublicApi.Contract.Transactions.Results.DocumentBusinessRulesErrorDto:
      required:
        - currentFieldId
        - errorType
        - ruleId
      type: object
      properties:
        errorType:
          minLength: 1
          type: string
          description: Normalization, Condition, Unknown...
        customMessage:
          type: string
          description: Custom error message
          nullable: true
        ruleId:
          minLength: 1
          type: string
          description: ID of the rule that encountered the error
        currentFieldId:
          minLength: 1
          type: string
          description: >-
            ID of the field in the context that the rule was run and the error
            was generated
      additionalProperties: false
    Abbyy.Vantage.PublicApi.Contract.Transactions.ResultFileType:
      enum:
        - Json
        - Pdf
        - Text
        - Docx
        - Xlsx
        - OcrJson
        - FieldsJson
        - FieldPicture
        - Xml
        - Tiff
        - Jpeg
        - Csv
        - Html
        - Pptx
        - Alto
        - Png
      type: string
    Abbyy.Vantage.PublicApi.Contract.Transactions.Results.ClassDto:
      type: object
      properties:
        id:
          type: string
          nullable: true
          description: Identifier of the class assigned by the classification skill.
        name:
          type: string
          nullable: true
          description: Name of the class assigned by the classification skill.
      additionalProperties: false
    Abbyy.Vantage.PublicApi.Contract.Transactions.Results.ClassificationConfidenceDto:
      required:
        - classId
        - className
        - confidence
      type: object
      properties:
        classId:
          minLength: 1
          type: string
          description: Identifier of the candidate class.
        className:
          minLength: 1
          type: string
          description: Name of the candidate class.
        confidence:
          type: integer
          format: int32
          description: Classification confidence for this class, an integer from 0 to 100.
      additionalProperties: false
  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

````