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

# Get results action

> The Get results action monitors a transaction and retrieves ABBYY Vantage processing results, including extracted data, classes, and full text.

The **Get results** action monitors the status of a transaction and gets the processing results from ABBYY Vantage. Place this action after the **Use skill** action.

## Action input parameters

| Parameter                           | Type       | Description                                                                                                                                                           |
| ----------------------------------- | ---------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Session name                        | `String`   | The name of the connection entered in the preceding **Connect** action. It keeps the user's credentials and the ABBYY Vantage server address.                         |
| Transaction ID                      | `String`   | The identifier of the transaction obtained as the output `transactionId` value of the **Use skill** action.                                                           |
| Request timeout                     | `Number`   | The period of time, in seconds, during which the transaction status is requested while the transaction is in the Processing status.                                   |
| Waiting time for a repeat request   | `Number`   | The frequency of the transaction status request. If no value is specified, the default value of 1 second is used.                                                     |
| Download all files                  | `Checkbox` | Select this checkbox and specify the output folder to download the processing results. If the checkbox is selected but no folder is specified, an error is displayed. |
| Path to download processing results | `String`   | The output folder for the processing results. If a folder is specified but the checkbox is not selected, the download is not completed.                               |

## Action output parameters

The processing results are returned as a `Record` parameter that contains the following keys:

| Key              | Type     | Description                                                                                                                                                                             |
| ---------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| details          | `String` | Additional information about the transaction.                                                                                                                                           |
| status           | `String` | The status of the transaction.                                                                                                                                                          |
| manualReviewLink | `String` | A link that lets users review the processing results in the ABBYY Vantage Manual Review Client. This link is available only when using a Process skill that contains a Review activity. |
| error            | `String` | The transaction's errors.                                                                                                                                                               |
| AllDocuments     | `Record` | The results of processing all the documents of the transaction. A record is created for each document.                                                                                  |

### AllDocuments properties

| Key                    | Type         | Description                                                                                                                                                                                                                                                                                     |
| ---------------------- | ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| businessRulesErrors    | `String`     | A list of business rule errors found during document processing.                                                                                                                                                                                                                                |
| IsResultClassConfident | `String`     | The flag that indicates the confidence of the assigned class.                                                                                                                                                                                                                                   |
| resultClass            | `String`     | The most confident class of the document.                                                                                                                                                                                                                                                       |
| classifications        | `Dictionary` | A list of all the classes available in the applied Classification skill, together with the classification confidence.                                                                                                                                                                           |
| extractedData          | `String`     | The JSON string with the processing results.                                                                                                                                                                                                                                                    |
| files                  | `Record`     | All files in the Automation Anywhere format. To obtain these files, download them first by selecting the download checkbox and specifying the output folder.                                                                                                                                    |
| values                 | `Record`     | A set of key-value pairs that map the extracted fields' values to Automation Anywhere variables. If several instances of a repeatable non-table or table field are detected on the document, the index is added to the name of each new instance. Indexing starts at 0, for example `field[0]`. |
| documentFullText       | `String`     | The full-text layer of a document that has been captured by ABBYY Vantage.                                                                                                                                                                                                                      |

<Note>
  If the skill configuration does not contain a full text export setting, the `documentFullText` property contains the default value. TXT export is only available for OCR or Processing skills.
</Note>

## Related topics

* [Connect action](/vantage/connectors/aa/actions/connect)
* [Use skill action](/vantage/connectors/aa/actions/use-skill)
* [Close session action](/vantage/connectors/aa/actions/close-session)
