{
  "object": "batch_processor_run",
  "id": "bpr_1234",
  "processorId": "dp_5678",
  "processorVersionId": "dpv_91011",
  "processorName": "Invoice Extractor",
  "metrics": {
    "numFiles": 10,
    "numPages": 25,
    "meanRunTimeMs": 1500,
    "type": "EXTRACT",
    "fieldMetrics": {
      "invoice_number": {
        "meanConfidence": 0.95,
        "recallPerc": 98.5,
        "precisionPerc": 99.2
      },
      "invoice_date": {
        "meanConfidence": 0.92,
        "recallPerc": 95.1,
        "precisionPerc": 97.3
      }
    }
  },
  "status": "PROCESSED",
  "source": "STUDIO",
  "sourceId": "dp_5678",
  "runCount": 1,
  "options": {
    "fuzzyMatchFields": ["invoice_number"],
    "excludeFields": ["internal_notes"],
    "clearPreProcessingCache": false
  },
  "createdAt": "2023-05-15T10:30:45Z",
  "updatedAt": "2023-05-15T10:35:22Z"
}

The BatchProcessorRun object is returned by the Get Batch Processor Run endpoint.

The object represents a run of a processor over a batch of files and contains all the information about the run, including metrics, the processor that was run, and the status of the run.

object
string

The type of response, will always be “batch_processor_run”.

id
string

The unique identifier for this batch processor run.

processorId
string

The ID of the processor used for this run.

processorVersionId
string

The ID of the specific processor version used.

processorName
string

The name of the processor.

metrics
object

The metrics for the batch processor run.

status
string

The current status of the batch processor run. Possible values are PENDING, PROCESSING, PROCESSED, FAILED.

source
string

The source of the batch processor run.

sourceId
string

The ID of the source of the batch processor run. See the source field for more details.

runCount
number

The number of runs that were made.

options
object

The options for the batch processor run.

createdAt
string

The date and time the batch processor run was created.

updatedAt
string

The date and time the batch processor run was last updated.

{
  "object": "batch_processor_run",
  "id": "bpr_1234",
  "processorId": "dp_5678",
  "processorVersionId": "dpv_91011",
  "processorName": "Invoice Extractor",
  "metrics": {
    "numFiles": 10,
    "numPages": 25,
    "meanRunTimeMs": 1500,
    "type": "EXTRACT",
    "fieldMetrics": {
      "invoice_number": {
        "meanConfidence": 0.95,
        "recallPerc": 98.5,
        "precisionPerc": 99.2
      },
      "invoice_date": {
        "meanConfidence": 0.92,
        "recallPerc": 95.1,
        "precisionPerc": 97.3
      }
    }
  },
  "status": "PROCESSED",
  "source": "STUDIO",
  "sourceId": "dp_5678",
  "runCount": 1,
  "options": {
    "fuzzyMatchFields": ["invoice_number"],
    "excludeFields": ["internal_notes"],
    "clearPreProcessingCache": false
  },
  "createdAt": "2023-05-15T10:30:45Z",
  "updatedAt": "2023-05-15T10:35:22Z"
}