For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Book a demoLog in
ProductAPI ReferenceChangelogModel Versioning
ProductAPI ReferenceChangelogModel Versioning
    • Authentication
    • API Versioning
  • Workflow Endpoints
    • Run Workflow
    • Workflow Run
    • List Workflow Runs
    • Update Workflow Run
    • Create Workflow
    • Batch Run Workflow
    • Correct Workflow Run (Deprecated)
  • Processor Endpoints
    • Run Processor
    • Get Processor Run
    • Batch Processor Run
    • Create Processor
    • Update Processor
    • Publish Processor Version
    • Processor Version
    • List Processor Versions
  • Parse Endpoints
    • Parse File
  • File Endpoints
    • Upload File
    • Get File
    • List Files
    • Create File (Deprecated)
  • Evaluation Set Endpoints
    • Create Evaluation Set
    • Create Evaluation Set Item
    • Update Evaluation Set Item
    • Bulk Create Evaluation Set Item
  • Objects
    • Block
    • Evaluation Set
    • Evaluation Set Item
    • File
    • Processor
    • Processor Run
    • Batch Processor Run
    • Processor Version
    • Workflow
    • Workflow Run
    • Workflow Run Summary
  • Guides
    • Processor Configs
    • Output Types
    • Bounding Boxes
    • Supported File Types
    • Rate Limits
    • User Roles and Permissions
  • Webhooks
    • Configuration
    • Events
LogoLogo
Book a demoLog in
Objects

The Processor object

Example Processor
1{
2 "object": "document_processor",
3 "id": "processor_1234",
4 "name": "Invoice Extractor",
5 "type": "EXTRACT",
6 "draftVersion": {
7 "id": "dpv_4567",
8 "version": "draft",
9 "config": {
10 // Config object - see “Processor configs” for details
11 },
12 },
13 "createdAt": "2024-01-01T00:00:00Z",
14 "updatedAt": "2024-01-01T12:30:00Z"
15}
Was this page helpful?
Previous

The ProcessorRun object

Next
Built with

The Processor object represents a document processor in Extend. AI document processors are specialized components designed to process unstructured data: extraction, classification, splitting, etc. These are typically created in the Extend Studio and then orchestrated via a Workflow.

properties
object
string

The type of the object, in this case it will always be “document_processor”.

id
string

The document processor ID.

name
string

The name of the document processor.

type
string

The type of the document processor. This field specifies the category or functionality of the processor. See Object Types more context.

draftVersion
object

The draft version of the processor. See the ProcessorVersion object for more details.

createdAt
string

The date and time when the document processor was created, in ISO 8601 format.

updatedAt
string

The date and time when the document processor was last updated, in ISO 8601 format.