get_import_error
Retrieve specific import error details from Apache Airflow by providing the error ID to diagnose and resolve DAG import failures.
Instructions
Get a specific import error by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| import_error_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"import_error_id": {
"title": "Import Error Id",
"type": "integer"
}
},
"required": [
"import_error_id"
],
"type": "object"
}