Export Runs
Build CSV content for workflow run exports.
- Which workflow + which block to export (
workflow_id,block_id). - What to export for that block (
export_source):"outputs"(default) — what the block produced."inputs"— what the block received.
- Which runs to include — either a fixed list (
selected_run_ids) or all runs that match the filters (status,exclude_status,from_date,to_date,trigger_type). - Column ordering via
preferred_columns. Columns you don’t list still appear, in the order the block emits them.
Authorizations
Body
Body describing which block outputs (or inputs) across a workflow's runs to export as CSV, with optional run, doc-type, and status filters.
Workflow ID to export
Block ID to export
Use block outputs or inputs
outputs, inputs Run IDs filter (null means all runs)
Doc type filter (null/empty means all)
Optional status filter (intersects with completed-only export scope)
pending, queued, running, completed, error, failed, awaiting_review, cancelled Optional status exclusion filter (intersects with completed-only export scope)
pending, queued, running, completed, error, failed, awaiting_review, cancelled Optional start date filter (YYYY-MM-DD)
Optional end date filter (YYYY-MM-DD)
Optional trigger type filter
manual, api, schedule, webhook, email, restart Preferred data column order
CSV field delimiter. Default is ';' (the Excel EU-locale default); pass ',' for RFC 4180 compatibility. Cell values are always quoted when they contain the delimiter, the line terminator, or the quote character, with embedded quotes doubled per RFC 4180.
CSV line delimiter
CSV quote character