action apache_get_task_instances { label: "List task instances" description: "This endpoint allows specifying `~` as the dag_id, dag_run_id to retrieve DAG runs for all DAGs and DAG runs.\n" provider: apache method: GET path: "/dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances" encoding: json input: { type: "object" properties: { limit: { type: "integer" } offset: { type: "integer" } } additionalProperties: false } output: { type: "object" description: "Collection of task instances.\n\n*Changed in version 2.1.0*: 'total_entries' field is added.\n" } }