Delete drives
Removes an EMPTY drive and answers 204. A drive holding files is 409 rather than a cascade: deleting an org's files behind a single drive call is not a…
DELETE /v1/space/{space}/drives/{drive}
| Address | https://api.hanzo.ai/v1/space/{space}/drives/{drive} |
| Method | DELETE |
| Operation | delete_space_by_space_drives_by_drive |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Removes an EMPTY drive and answers 204.
A drive holding files is 409 rather than a cascade: deleting an org's files behind a single drive call is not a thing this surface will do silently. A drive or space the caller's org does not own is the same 404 an unknown name gives.
Billed per call: the balance is checked BEFORE anything is touched, so an unfunded org is refused with nothing deleted, and the debit lands only once the drive is gone.
Request
2 fields.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
space | path | string | yes | Space is the space's name, from the path. |
drive | path | string | yes | Drive is the drive's name, from the path. |
Response
| Status | Body | Meaning |
|---|---|---|
204 | — | no content |
default | problem-details | refused |
Failure carries the platform error shape — see Errors.
Examples
hanzo space drives rm <space> <drive>import { Configuration, SpaceApi } from 'hanzoai';
const api = new SpaceApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.deleteSpaceBySpaceDrivesByDrive({ space: 'space', drive: 'drive' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import SpaceApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = SpaceApi(client).delete_space_by_space_drives_by_drive(space='space', drive='drive')cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.SpaceAPI.DeleteSpaceBySpaceDrivesByDrive(context.Background()).Execute()
if err != nil {
return err
}use hanzo_client::apis::{configuration::Configuration, space_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = space_api::delete_space_by_space_drives_by_drive(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.SpaceApi;
ApiClient client = new ApiClient();
client.setBearerToken(System.getenv("HANZO_API_KEY"));
var result = new SpaceApi(client).deleteSpaceBySpaceDrivesByDrive();curl -X DELETE https://api.hanzo.ai/v1/space/<space>/drives/<drive> \
-H "Authorization: Bearer $HANZO_API_KEY"MCP declares no tool for space — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
How is this guide?