Find Invoice Results
Finds invoice-related information within a specified document using GPT-based extraction.
Overview
This procedure finds invoice-related information within a document using GPT-based extraction. It can extract specific invoice fields like invoice numbers, dates, amounts, and other invoice-related data from document lines or text content.
Make sure to add the Document Processing Book to your agent before using this automation procedure.
Syntax
Below is a line-by-line overview of the automation syntax. Expand each line to learn more.
Examples
1. Default Extraction (Invoice Number Only)
In this example, no columns are specified, so only the invoice number is extracted.
get the file as a scanned document
get the document's lines as the lines
find the invoice results in the lines
2. Extract Multiple Invoice Fields
This example extracts multiple invoice-related fields from document lines.
get the file as a scanned document
get the document's lines as the lines
find the invoice results in the lines with
the columns are "Invoice Number", "Date", "Total Amount"
3. Extract Custom Invoice Fields
This example extracts custom invoice fields from document content.
get the document's text as the content
find the invoice results in the content with
the columns are "Vendor Name", "PO Number", "Due Date", "Tax Amount"
Last updated
Was this helpful?