ds_get_task_detail
Retrieve detailed parameters for a single task by project name, workflow code, and task name. Verify task changes took effect without downloading the entire workflow DAG.
Instructions
Read full parameters of a single task (returns only that task, not the whole DAG).
Added in v2.0.12 for the "verify a task change took effect" scenario, avoiding pulling a huge DAG payload.
Args: project_name: Project name workflow_code: Process-definition code task_name: Task name (exact match)
Returns: { "task_code": int, "task_name": str, "task_type": str, "task_params": {...}, # Full taskParams (preStatements/postStatements/sql/script etc.) "description": str, "fail_retry_times": int, "timeout": int, ... }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_name | Yes | ||
| project_name | Yes | ||
| workflow_code | Yes |