v2
latestOpenAPI 3.1.02026-08-06276982.8 KBGet run results
Get the results of a completed automation app run.
<Note> The results from this endpoint are paginated. The `has_more` field in the response indicates if there are more results to fetch and the `file_offset` query parameter can be used to specify the starting point for the next set of results.For an example of using file_offset to fetch all results, see the Retrieving paginated results code sample. </Note>
<Info>This API operation might return field names that differ from those in the automation project. The operation converts field names to valid Python variable names by:
- Allowing only letters, numbers, and underscores
- Requiring names to start with a letter or underscore
- Replacing invalid characters with underscores
- Converting single underscores to double underscores
Examples:
- due date → due_date
- driver's license → driver_s_license
- 3rd category → _3rd_category
- secret_id → secret__id
These changes apply only to field names in the API response. The field names in the automation project are not changed.
</Info>Path parameters
The run ID.
Query parameters
Whether to include human review details in the results. When set to true, various human review details are returned.
<Note>The review process can include manually correcting values. This endpoint doesn't support returning the original and corrected values.</Note>
The following values are returned at the document level (files/documents/...):
- review_completed
- class_edit_history
- class_edit_history/timestamp
- class_edit_history/user_id
- class_edit_history/modifications
- class_edit_history/modifications/message
The following values are returned at the field level (files/documents/fields/...):
- edit_history
- edit_history/timestamp
- edit_history/user_id
- edit_history/modifications
- edit_history/modifications/message
The following values are returned at the packet level (also known as case level) (case_info/fields/...):
- edit_history
- edit_history/timestamp
- edit_history/user_id
- edit_history/modifications
- edit_history/modifications/message
See the response schema for details and descriptions.
Whether to include confidence scores in the results. When set to true, various confidence scores are returned.
The following values are returned at the document level (files/documents/...):
- classification_confidence
The following values are returned at the field level (files/documents/fields/...):
- confidence/model
- confidence/ocr
See the response schema for details and descriptions.
Whether to include validation status in the results. When set to true, various validation results are returned.
The following values are returned at the document level (files/documents/...):
- validations/final_result_pass
The following values are returned at the field level (files/documents/fields/...):
- validations/valid
- validations/alerts
The following values are returned at the packet level (also known as case level) (case_info/fields/...):
- validations/valid
- validations/failures
Cross-class validation ensures data quality and consistency across documents within a packet.
See the response schema for details and descriptions.
Whether to include source information in the results. When set to true, various source details are returned.
The following values are returned at the document level (files/documents/...):
-
post_processed_paths
-
post_processed_pdf_path
<Note> A `post_processed_pdf_path` is populated when `settings/runtime_config/generate_post_process_pdf=true`. Paths to PDFs are generated from each document, with separate PDF paths for documents split during classification. </Note> -
page_layouts
The following values are returned at the field level (files/documents/fields/...):
- source_coordinates/top_x
- source_coordinates/top_y
- source_coordinates/bottom_x
- source_coordinates/bottom_y
- source_coordinates/page_number
See the response schema for details and descriptions.
The initial file index to start returning results from. Defaults to 0.
Headers
Bearer HTTP authentication.
Typically your organization ID. See Authorization and context identification for details.
Response
Run results retrieved successfully.
<Note>If errors occur at the class, field, or document levels, the response status code is 200 and the response body includes error details.
</Note>