- How documents are selected and classified
- Whether documents are split
- What additional data is returned
- How large or complex documents are handled
File (Required)
File (Required)
The file parameter contains the document to be extracted.
- Required
- Only one file may be sent per request
- Files must be Base64-encoded
- docx
- txt
- tiff / tif
- jpg / jpeg
- png
| Key | Type | Value |
|---|---|---|
| file | File | [Base64-encoded file] |
Template Name
Template Name
Specifies the name of the template created in the UI that should be used for extraction.
- Required **if **
filterNameis not provided - Must match the template name exactly, including case and spacing
| Key | Type | Value |
|---|---|---|
| templateName | Text | [template name] |
Filter Name
Filter Name
Specifies the name of a filter created in the UI.
- Required **if **
templateNameis not provided - Must match the filter name exactly, including case and spacing
| Key | Type | Value |
|---|---|---|
| filterName | Text | [filter name] |
Document Splitting
Document Splitting
Enables splitting a single file containing multiple documents into individual documents, which are then extracted separately within the same request.
- Accepts
trueorfalse - Defaults to
falseif not specified
| Key | Type | Value |
|---|---|---|
| documentSplitting | Text | true/false |
Returning Documents
Returning Documents
Controls whether the extracted documents are returned as Base64-encoded PDF files.
- Accepts
trueorfalse - Defaults to
falseif not specified
| Key | Type | Value |
|---|---|---|
| returnDocuments | Text | true/false |
Returning Text
Returning Text
Controls whether all extracted text is returned as a single text block.
- Accepts
trueorfalse - Defaults to
falseif not specified
- Full-text search
- Indexing
- Archival or audit purposes
| Key | Type | Value |
|---|---|---|
| returnText | Text | true/false |
Schema Chunking (Template Chunking)
Schema Chunking (Template Chunking)
Schema chunking controls how line items are extracted from documents containing repeating or tabular data.
- Defaults to
autoif not specified
- Auto
Extracts line items on a per-page basis, allowing documents to contain a large number of line items.
Each individual line item must exist entirely within a single page. - Combined
Combines pages during extraction, allowing line items to span multiple pages.
This mode limits the total number of line items that can be extracted.
Recommendation: Keep schema chunking set to auto unless line items span multiple pages.
| Key | Type | Value |
|---|---|---|
| schemaChunking | Text | auto/combined |
Password
Password
Allows extraction of password-protected documents.If the document is password protected, include the password in the request and the system will attempt extraction using the provided password.
| Key | Type | Value |
|---|---|---|
| password | Text | [password] |