{ "opencollection": "1.0.0", "info": { "name": "Airflow Asset Task API", "version": "2" }, "items": [ { "info": { "name": "Task", "type": "folder" }, "items": [ { "info": { "name": "Airflow Get Tasks", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v2/dags/:dag_id/tasks", "params": [ { "name": "dag_id", "value": "", "type": "path" }, { "name": "order_by", "value": "", "type": "query" } ], "auth": { "type": "oauth2", "flow": "resource_owner_password_credentials", "accessTokenUrl": "/auth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Get tasks for DAG." }, { "info": { "name": "Airflow Get Task", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v2/dags/:dag_id/tasks/:task_id", "params": [ { "name": "dag_id", "value": "", "type": "path" }, { "name": "task_id", "value": "", "type": "path" } ], "auth": { "type": "oauth2", "flow": "resource_owner_password_credentials", "accessTokenUrl": "/auth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Get simplified representation of a task." } ] } ], "bundled": true }