drives.create
Create a shared drive in the active organization.
POST /api/v1/drives
- SDK:
tb.drives.create(input) - CLI:
thinkbench drives create - MCP tool:
drives_create
Input
| Field | Type | In | Description |
|---|---|---|---|
name |
string |
body |
Output
| Field | Type | Description |
|---|---|---|
drive |
Drive |
Examples
curl
curl -X POST "https://app.thinkbench.com/api/v1/drives" \
-H "x-api-key: $THINKBENCH_API_KEY" \
-H "content-type: application/json" \
-d '{"name":"Q3 planning"}'TypeScript SDK
const result = await tb.drives.create({ name: "Q3 planning" });CLI
thinkbench drives create --name "Q3 planning"MCP
{
"name": "drives_create",
"arguments": {
"name": "Q3 planning"
}
}