get_task_run
Retrieve detailed information about a specific Prefect task run using its unique identifier to monitor execution status and access run metadata.
Instructions
Get details of a specific task run by ID.
Args: task_run_id: The task run UUID
Returns: Task run details
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| task_run_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "task_run_id": {
      "title": "Task Run Id",
      "type": "string"
    }
  },
  "required": [
    "task_run_id"
  ],
  "type": "object"
}