Load a flow's mock config
catalog_load_flow_configFetches and caches a flow's mock-runner configuration, returning a cache key for later execution. It stores the per-step generation, validation, and save-data logic.
Instructions
Fetch and cache the mock-runner configuration for a flow — the per-step generation, validation, requirement and save-data logic the workbench uses to drive it. Returns a summary of what each step carries; the configuration itself is held server-side under the returned cache_key for later execution, because it is far too large to read directly.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| flow_id | Yes | Flow whose mock-runner config should be loaded. | |
| session_id | Yes | Session returned by session_create. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| meta | Yes | Config identity as published by the config-service. | |
| steps | Yes | ||
| flow_id | Yes | ||
| cache_key | Yes | Server-side handle for the cached config, for later execution. | |
| step_count | Yes | ||
| total_bytes | Yes | Size of the whole config held server-side. | |
| helper_lib_bytes | Yes | Size of the shared helper library carried by the config. | |
| validation_lib_bytes | Yes |