Apache Airflow · Example Payload

Airflow Backfill Response Example

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Airflow Backfill Response Example is an example object payload from Apache Airflow, with 12 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

iddag_idfrom_dateto_datedag_run_confis_pausedreprocess_behaviormax_active_runscreated_atcompleted_atupdated_atdag_display_name

Example Payload

Raw ↑
{
  "id": "abc123",
  "dag_id": "abc123",
  "from_date": "2026-01-15T10:30:00Z",
  "to_date": "2026-01-15T10:30:00Z",
  "dag_run_conf": "example-value",
  "is_paused": true,
  "reprocess_behavior": "example-value",
  "max_active_runs": 1,
  "created_at": "2026-01-15T10:30:00Z",
  "completed_at": "example-value",
  "updated_at": "2026-01-15T10:30:00Z",
  "dag_display_name": "example-name"
}