action apache_get_dags { label: "List DAGs" description: "List DAGs in the database.\n`dag_id_pattern` can be set to match dags of a specific pattern\n" provider: apache method: GET path: "/dags" encoding: json input: { type: "object" properties: { dag_id_pattern: { type: "string" } limit: { type: "integer" } offset: { type: "integer" } only_active: { type: "boolean" } order_by: { type: "string" } tags: { type: "array" items: { type: "string" } } } additionalProperties: false } output: { type: "object" description: "Collection of DAGs.\n\n*Changed in version 2.1.0*: 'total_entries' field is added.\n" } }