Skip to content
Navigation
View as Markdown

drives.create

Create a shared drive in the active organization.

POST /api/v1/drives

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"
  }
}