> ## Documentation Index
> Fetch the complete documentation index at: https://docs.daily.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Batch Processor Job Error

> The batch processor job error webhook event

A batch processor error event is emitted when as batch processor job enters the `error` status. Read more about batch processor jobs [here](/reference/rest-api/batch-processor).

## Common fields

<ParamField body="version" type="string">
  Represents the version of the event. Uses semantic versioning to inform a consumer if the payload has introduced any breaking changes.
</ParamField>

<ParamField body="type" type="string">
  Represents the type of the event described in the payload.
</ParamField>

<ParamField body="id" type="string">
  An identifier representing this specific event.
</ParamField>

<ParamField body="payload" type="object">
  An object representing the event, whose fields are described below.
</ParamField>

<ParamField body="event_ts" type="number">
  Documenting when the webhook itself was sent. This timestamp is different than the time of the event the webhook describes.
</ParamField>

## Payload

<ParamField body="id" type="string">
  The batch processor job id.
</ParamField>

<ParamField body="preset" type="string">
  The preset given when starting the job.
</ParamField>

<ParamField body="status" type="string">
  The status of the job.
</ParamField>

<ParamField body="input" type="object">
  These parameters define what the inputs were for this given batch processor job.
</ParamField>

<ParamField body="error" type="string">
  A description of the error that occurred.
</ParamField>

```json theme={null}
{
  "version": "1.0.0",
  "type": "batch-processor.error",
  "id": "bp-je-bcb9f15d-2b00-4d98-be5f-23888e2df2ca",
  "payload": {
    "id": "bcb9f15d-2b00-4d98-be5f-23888e2df2ca",
    "preset": "summarize",
    "status": "error",
    "input": {
      "sourceType": "uri",
      "uri": "{{uri}}"
    },
    "output": {},
    "error": "Summary generation job failed: BatchProcessorTranscriptError: transcript job failed: Error: Failed to download: 403 Forbidden"
  },
  "event_ts": 1711402402.539
}
```
