Schedule and automate ingestion, classification, and export pipelines
Workflows chain platform operations into scheduled, repeatable pipelines. Instead of manually re-running ingestion and classification as new documents arrive, define the sequence once and let it run on a cron cadence, or trigger it on demand.
Ordered list, each stage runs after the previous completes
Ingest, then Classify
Jobs
API calls within a stage (endpoint + request body)
/ocr/ingest, /classify_bulk
Stages run sequentially; jobs inside a stage run together. Put ingestion and classification in separate stages so classification always sees the newly ingested documents.