action apache_get_dag_runs { label: "List DAG runs" description: "This endpoint allows specifying `~` as the dag_id to retrieve DAG runs for all DAGs.\n" provider: apache method: GET path: "/dags/{dag_id}/dagRuns" encoding: json input: { type: "object" properties: { end_date_gte: { type: "string" format: "date-time" } end_date_lte: { type: "string" format: "date-time" } execution_date_gte: { type: "string" format: "date-time" } execution_date_lte: { type: "string" format: "date-time" } limit: { type: "integer" } offset: { type: "integer" } order_by: { type: "string" } start_date_gte: { type: "string" format: "date-time" } start_date_lte: { type: "string" format: "date-time" } state: { type: "array" items: { type: "string" } } } additionalProperties: false } output: { type: "object" description: "Collection of DAG runs.\n\n*Changed in version 2.1.0*: 'total_entries' field is added.\n" } }