API Documentation
Workflow Endpoints
Processor Endpoints
Parse Endpoints
File Endpoints
Evaluation Set Endpoints
Objects
Webhooks
The Processor object
{
"object": "document_processor",
"id": "processor_1234",
"name": "Invoice Extractor",
"type": "EXTRACT",
"draftVersion": {
"id": "dpv_4567",
"version": "draft",
"config": {
"fields": [
{
"id": "invoice_number",
"name": "invoice_number",
"description": "The invoice number",
"type": "string",
}
]
}
},
"createdAt": "2024-01-01T00:00:00Z",
"updatedAt": "2024-01-01T12:30:00Z"
}
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.
The type of the object, in this case it will always be “document_processor”.
The document processor ID.
The name of the document processor.
The type of the document processor. This field specifies the category or functionality of the processor. See Object Types more context.
The draft version of the processor. See the ProcessorVersion object for more details.
The date and time when the document processor was created, in ISO 8601 format.
The date and time when the document processor was last updated, in ISO 8601 format.
{
"object": "document_processor",
"id": "processor_1234",
"name": "Invoice Extractor",
"type": "EXTRACT",
"draftVersion": {
"id": "dpv_4567",
"version": "draft",
"config": {
"fields": [
{
"id": "invoice_number",
"name": "invoice_number",
"description": "The invoice number",
"type": "string",
}
]
}
},
"createdAt": "2024-01-01T00:00:00Z",
"updatedAt": "2024-01-01T12:30:00Z"
}
{
"object": "document_processor",
"id": "processor_1234",
"name": "Invoice Extractor",
"type": "EXTRACT",
"draftVersion": {
"id": "dpv_4567",
"version": "draft",
"config": {
"fields": [
{
"id": "invoice_number",
"name": "invoice_number",
"description": "The invoice number",
"type": "string",
}
]
}
},
"createdAt": "2024-01-01T00:00:00Z",
"updatedAt": "2024-01-01T12:30:00Z"
}