Event
ConceptsEvent is a notification that something happened in DocLD—for example, document processing complete or extraction job finished. Webhooks deliver events to your endpoint via HTTP callbacks so you can react without polling.
Event Types
| Event | When it fires |
|---|---|
| Document processed | Parsing, chunking, and embedding complete |
| Extraction complete | Extraction job finished; results available |
| Workflow step | Workflow step completed |
Each event includes metadata (e.g., job ID, document ID, status). DocLD signs requests so you can verify authenticity. Idempotency in your handler avoids duplicate processing if an event is retried.
Related Concepts
Events are delivered via webhooks. Jobs produce completion events. Workflows can trigger on events and emit step events.