get_task
Retrieve specific task details from Apache Airflow using DAG and task identifiers to monitor and manage workflow execution.
Instructions
Get a task by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes | ||
| task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dag_id": {
"title": "Dag Id",
"type": "string"
},
"task_id": {
"title": "Task Id",
"type": "string"
}
},
"required": [
"dag_id",
"task_id"
],
"type": "object"
}