get_flow
Retrieve detailed information about a specific workflow by providing its unique identifier, enabling users to inspect flow configurations and status.
Instructions
Get details of a specific flow by ID.
Args: flow_id: The flow UUID
Returns: Flow details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flow_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"flow_id": {
"title": "Flow Id",
"type": "string"
}
},
"required": [
"flow_id"
],
"type": "object"
}