Create rooms
Opens a named room and answers it as the store now holds it.
POST /v1/team/rooms
| Address | https://api.hanzo.ai/v1/team/rooms |
| Method | POST |
| Operation | post_team_rooms |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Opens a named room and answers it as the store now holds it.
It writes through the SAME applyTx path the Team client uses, so a room opened here is broadcast to every live client of the space and appears in an open sidebar without a reload — the same property listRooms rests on, read from the write side.
TWO TRANSACTIONS, NOT ONE, when the request states a facet. The document and its mixin are separate writes in this model (bindRoom writes only the second), and composing them here rather than inventing a combined tx keeps one write path for each. A create that lands and a facet that does not is visible as a room with default intent, which is the honest partial state.
Request
7 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
bindings | body | string[] | — | Bindings are what the room is about, each "<kind>:<ref>". |
life | body | string | — | Life is the lifecycle intent, "standing" or "bound"; empty reads standing. |
members | body | string[] | — | Members are the account uuids in the room. |
name | body | string | — | Name is what a person sees in a sidebar — "bugfix-1010", not "#bugfix-1010". |
private | body | boolean | — | Private restricts the room to its members. |
space | body | string | — | Space is where the room is opened. Optional: an org with one space has no choice to make, so it does not have to state one. |
topic | body | string | — | Topic is the room's one-line subject. |
Response
| Status | Body | Meaning |
|---|---|---|
201 | team.teamRoom | created |
default | problem-details | refused |
201 body — 10 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
archived | body | boolean | — | Archived reports that the room has been closed. |
bindings | body | string[] | — | Bindings are what this room is ABOUT, each a "<kind>:<ref>" string — "project:acme/web", "repo:hanzoai/cloud", "issue:1010". |
direct | body | boolean | — | Direct reports that this is a room between people rather than a named room. |
id | body | string | — | ID is the room document's own id, and the value the bind op addresses. |
life | body | string | — | Life is the room's lifecycle INTENT — "standing" or "bound" (HIP-0523 §2). |
members | body | string[] | — | Members are the account uuids in the room, agents included: an agent projects as a space member under a uuid derived from its id, so a caller comparing this… |
name | body | string | — | Name is what a person sees in a sidebar. |
private | body | boolean | — | Private reports that the room is restricted to its members. |
space | body | string | — | Space is the space uuid holding this room. |
topic | body | string | — | Topic is the room's own one-line subject, as the Team client sets it. |
Failure carries the platform error shape — see Errors.
Examples
hanzo team rooms createimport { Configuration, TeamApi } from 'hanzoai';
const api = new TeamApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postTeamRooms({ bindings: ["<bindings>"], life: "<life>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import TeamApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = TeamApi(client).post_team_rooms(bindings=["<bindings>"], life="<life>")cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.TeamAPI.PostTeamRooms(context.Background()).Execute()
if err != nil {
return err
}use hanzo_client::apis::{configuration::Configuration, team_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = team_api::post_team_rooms(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.TeamApi;
ApiClient client = new ApiClient();
client.setBearerToken(System.getenv("HANZO_API_KEY"));
var result = new TeamApi(client).postTeamRooms();curl -X POST https://api.hanzo.ai/v1/team/rooms \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"bindings": [
"<bindings>"
],
"life": "<life>"
}'MCP reaches team through the team tool, which names its 18 operations with its own verbs — this one among them, under a name only MCP 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": "get_collaborator"
}
}
}'How is this guide?