List rooms
Returns every room of the caller's org, across the workspaces it owns, with the work facet each carries.
GET /v1/team/rooms
| Address | https://api.hanzo.ai/v1/team/rooms |
| Method | GET |
| Operation | get_team_rooms |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns every room of the caller's org, across the workspaces it owns, with the work facet each carries.
It reads the SAME Chunter documents the transactor serves, so a room opened in the Team client appears here with no sync, and a facet written here is read by anything holding the document. Direct messages are included: a room between two people is a room with no name, not a different kind of thing.
Request
GET /v1/team/rooms takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | teamRooms | ok |
200 body — 11 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
rooms | body | teamRoom[] | — | Rooms is every room of every workspace the caller's org owns, each with the work facet it carries. |
rooms[].archived | body | boolean | — | Archived reports that the room has been closed. |
rooms[].bindings | body | string[] | — | Bindings are what this room is ABOUT, each a "<kind>:<ref>" string — "project:acme/web", "repo:hanzoai/cloud", "issue:1010". |
rooms[].direct | body | boolean | — | Direct reports that this is a room between people rather than a named room. |
rooms[].id | body | string | — | ID is the room document's own id, and the value the bind op addresses. |
rooms[].life | body | string | — | Life is the room's lifecycle INTENT — "standing" or "bound" (HIP-0523 §2). |
rooms[].members | body | string[] | — | Members are the account uuids in the room, agents included: an agent projects as a workspace member under a uuid derived from its id, so a caller comparing… |
rooms[].name | body | string | — | Name is what a person sees in a sidebar. |
rooms[].private | body | boolean | — | Private reports that the room is restricted to its members. |
rooms[].topic | body | string | — | Topic is the room's own one-line subject, as the Team client sets it. |
rooms[].workspace | body | string | — | Workspace is the workspace uuid holding this room. |
Failure carries the platform error shape — see Errors.
Examples
hanzo team rooms listimport { Configuration, TeamApi } from 'hanzoai';
const api = new TeamApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getTeamRooms();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).get_team_rooms()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.TeamAPI.GetTeamRooms(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::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::get_team_rooms(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.TeamApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new TeamApi(client).getTeamRooms();curl https://api.hanzo.ai/v1/team/rooms \
-H "Authorization: Bearer $HANZO_API_KEY"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?