OpenapiReference
Removes one of your organisation's overrides.
Removes one of your organisation's overrides.
DELETE /v1/reference/{set}
| Address | https://api.hanzo.ai/v1/reference/{set} |
| Method | DELETE |
| Operation | riskClearReference |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Removes one of your organisation's overrides.
It removes an entry your organisation wrote, never a baseline member: the published set is not writable from here, so a removal can only ever restore the baseline's own answer.
Request
2 fields.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
set | path | string | yes | |
key | query | string | — |
Response
| Status | Body | Meaning |
|---|---|---|
200 | ClearReferenceOut | ok |
200 body — 4 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
cleared | body | boolean | — | Cleared is false when your org held no such override — which is not an error, it is the honest answer to a removal that had nothing to remove. |
key | body | string | — | Key is the entry named. |
overrides | body | integer | — | Overrides is how many your org still holds in this set. |
set | body | string | — | Set is the set cleared in. |
Failure carries the platform error shape — see Errors.
Examples
hanzo has no subcommand for this operation — the CLI serves only what cloud's live route table confirms. Use HTTP or an SDK.
import { Configuration, ReferenceApi } from 'hanzoai';
const api = new ReferenceApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.riskClearReference({ set: 'set' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import ReferenceApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = ReferenceApi(client).risk_clear_reference(set='set')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.ReferenceAPI.RiskClearReference(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, reference_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = reference_api::risk_clear_reference(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.ReferenceApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new ReferenceApi(client).riskClearReference();curl -X DELETE https://api.hanzo.ai/v1/reference/<set> \
-H "Authorization: Bearer $HANZO_API_KEY"Tool reference, op riskClearReference — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "reference",
"arguments": {
"op": "riskClearReference",
"input": {
"set": "<set>"
}
}
}
}'How is this guide?