curl --request GET \
  --url https://api-prod.extend.app/v1/batch_processor_runs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "batchProcessorRun": {
    "object": "batch_processor_run",
    "id": "bpr_1234",
    "processorId": "dp_5678",
    "processorVersionId": "dpv_91011",
    "processorName": "Processor Name",
    "metrics": {
        // metrics object, see the BatchProcessorRun object for details
    },
    "status": "PROCESSED",
    "source": "EVAL_SET",
    "sourceId": "ev_1234",
    "runCount": 1,
    "options": {
        "fuzzyMatchFields": ["field1"],
        "excludeFields": ["field2"],
        "clearPreProcessingCache": true
    },
    "createdAt": "2023-01-01T09:41:00.000Z",
    "updatedAt": "2023-01-10T05:39:24.500Z"
  }
}

This endpoint is used to retrieve details about a batch processor run, including evaluation runs.

URL Parameters

id
string
required

The unique identifier of the batch processor run to retrieve.

Response

success
boolean

A true or false value indicating whether the request was successful.

batchProcessorRun
object

Details about the requested batch processor run. See the BatchProcessorRun object for more details.

{
  "success": true,
  "batchProcessorRun": {
    "object": "batch_processor_run",
    "id": "bpr_1234",
    "processorId": "dp_5678",
    "processorVersionId": "dpv_91011",
    "processorName": "Processor Name",
    "metrics": {
        // metrics object, see the BatchProcessorRun object for details
    },
    "status": "PROCESSED",
    "source": "EVAL_SET",
    "sourceId": "ev_1234",
    "runCount": 1,
    "options": {
        "fuzzyMatchFields": ["field1"],
        "excludeFields": ["field2"],
        "clearPreProcessingCache": true
    },
    "createdAt": "2023-01-01T09:41:00.000Z",
    "updatedAt": "2023-01-10T05:39:24.500Z"
  }
}