Opens a new data room for the caller org and answers with it, including the…
Opens a new data room for the caller org and answers with it, including the short public id it is addressed by.
POST /v1/dataroom/datarooms
| Address | https://api.hanzo.ai/v1/dataroom/datarooms |
| Method | POST |
| Operation | post_dataroom_datarooms |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Opens a new data room for the caller org and answers with it, including the short public id it is addressed by.
name is required; without it the call is refused and the tenant store is
untouched, because a dispatch answering 4xx rolls its transaction back. A new
room holds no documents and is reachable by NOBODY until a share link is
created over it — opening a room and granting access are two separate acts, so
a room cannot leak by existing.
Request
2 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
description | body | any | — | Description is the room's description. |
name | body | any | — | Name is the room's display name. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | dataroomRoomOne | ok |
200 body — 7 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
dataroom | body | dataroomRoom | — | |
dataroom.createdAt | body | integer | — | CreatedAt is when the room was created, in unix milliseconds. |
dataroom.description | body | string | — | Description is the room's description, null when none was given. |
dataroom.id | body | string | — | ID is the room id, which is what other dataroom calls address it by. |
dataroom.name | body | string | — | Name is the room's display name. |
dataroom.pId | body | string | — | PId is the room's short public identifier, unique within the tenant. |
dataroom.updatedAt | body | integer | — | UpdatedAt is when the room last changed, in unix milliseconds. |
Failure carries the platform error shape — see Errors.
Examples
hanzo dataroom datarooms createimport { Configuration, DataroomApi } from 'hanzoai';
const api = new DataroomApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postDataroomDatarooms({ description: "<description>", name: "<name>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import DataroomApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = DataroomApi(client).post_dataroom_datarooms(description="<description>", name="<name>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.DataroomAPI.PostDataroomDatarooms(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, dataroom_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = dataroom_api::post_dataroom_datarooms(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.DataroomApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new DataroomApi(client).postDataroomDatarooms();curl -X POST https://api.hanzo.ai/v1/dataroom/datarooms \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"description": "<description>",
"name": "<name>"
}'The door reaches dataroom through the dataroom tool, which names its 17 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": "get_dataroom_analytic_dataroom"
}
}
}'How is this guide?