get_flow_details
Retrieve detailed information about a specific workflow including configuration and execution steps to understand and manage API testing flows.
Instructions
Get detailed information about a specific flow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| flowId | Yes | ID of the flow | |
| includeSteps | No | Include flow steps in response (default: true) | |
| includeConfig | No | Include flow configuration in response (default: true) |
Input Schema (JSON Schema)
{
"properties": {
"flowId": {
"description": "ID of the flow",
"type": "string"
},
"includeConfig": {
"default": true,
"description": "Include flow configuration in response (default: true)",
"type": "boolean"
},
"includeSteps": {
"default": true,
"description": "Include flow steps in response (default: true)",
"type": "boolean"
}
},
"required": [
"flowId"
],
"type": "object"
}