OpenapiFlow
Creates a workflow in the caller's org.
Creates a workflow in the caller's org. The org's project id is pinned server-side from the validated principal — there is no field by which a caller…
POST /v1/flow/workflows
| Address | https://api.hanzo.ai/v1/flow/workflows |
| Method | POST |
| Operation | post_flow_workflows |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Creates a workflow in the caller's org. The org's project id is pinned server-side from the validated principal — there is no field by which a caller could place a workflow in another org.
Request
3 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
data | body | any | — | Data is the workflow graph (the product's nodes/edges document), verbatim. |
description | body | string | — | Description says what the workflow does. |
name | body | string | — | Name is the workflow's display name, unique within the org's project (the product de-duplicates by suffixing). |
Response
| Status | Body | Meaning |
|---|---|---|
200 | ok |
200 body — 1 field.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
(body) | body | any | yes |
Failure carries the platform error shape — see Errors.
Examples
hanzo flow workflows createimport { Configuration, FlowApi } from 'hanzoai';
const api = new FlowApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postFlowWorkflows({ data: "<data>", description: "<description>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import FlowApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = FlowApi(client).post_flow_workflows(data="<data>", description="<description>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.FlowAPI.PostFlowWorkflows(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, flow_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = flow_api::post_flow_workflows(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.FlowApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new FlowApi(client).postFlowWorkflows();curl -X POST https://api.hanzo.ai/v1/flow/workflows \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"data": "<data>",
"description": "<description>"
}'The door reaches flow through the flow tool, which names its 8 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_flow_runs"
}
}
}'How is this guide?