td_get_workflow
Retrieve workflow details using a numeric ID to access project information, execution history, and console URLs for Treasure Data workflows.
Instructions
Get workflow details using numeric ID - essential for console URLs.
Direct workflow lookup when you have the ID. Handles large workflow IDs
that exceed pagination limits. Returns project info and execution history.
Common scenarios:
- Extracting ID from console URL (../workflows/12345678/info)
- Looking up workflow from error logs containing ID
- Getting project context for a known workflow ID
- Checking execution status by workflow ID
Returns workflow name, project details, schedule, and recent runs.
Includes console URL for quick browser access.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| workflow_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "workflow_id": {
      "title": "Workflow Id",
      "type": "string"
    }
  },
  "required": [
    "workflow_id"
  ],
  "type": "object"
}