Returns all backfill jobs for the authenticated user’s organization.
| Field | Description |
|---|---|
job_id | Unique job identifier |
status | Current job state — see statuses below |
job_name | Display name provided at creation |
table | Source Snowflake table |
partition_key | "block" or "block_timestamp" |
backfill_start / backfill_end | Window bounds (inclusive start, exclusive end) |
filter_column / filter_values | Column filter applied to the export, or null if none |
num_chunks | Total parquet files staged from Snowflake, or null while still staging |
chunks_left | Remaining files to deliver; counts down to 0 |
error_message | Set on failed jobs; null otherwise |
time_created | ISO 8601 UTC timestamp |
time_completed | ISO 8601 UTC timestamp, or null if not yet finished |
| Status | Description |
|---|---|
staging | Exporting data from Snowflake to GCS |
transporting | Delivering parquet chunks to destinations |
completed | All chunks delivered successfully |
failed | Job encountered an error (see error_message) |
cancelled | Job was cancelled via the cancel endpoint |