run.processing

Event triggered whenever an extraction run begins processing.

This event fires after the run transitions from pending to processing status.

Response Body Parameters

type: string

The event type that triggered the webhook (e.g., `run.processing`).

created_at: string

ISO 8601 timestamp when the webhook event was created.

data: object

Event-specific data containing detailed information about the run.

200 Response
{
  "type": "run.processing",
  "created_at": "2024-03-15T10:30:05Z",
  "data": {
    "run_id": "run_xyz789",
    "document_id": "doc_abc123",
    "schema_key": "invoice",
    "schema_version_number": 3,
    "workspace_slug": "my-workspace",
    "environment": "production"
  }
}