get_flow_run
Retrieve detailed information about a specific workflow execution using its unique identifier to monitor status, track progress, and analyze performance.
Instructions
Get details of a specific flow run by ID.
Args: flow_run_id: The flow run UUID
Returns: Flow run details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flow_run_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"flow_run_id": {
"title": "Flow Run Id",
"type": "string"
}
},
"required": [
"flow_run_id"
],
"type": "object"
}