Removes one record from a section of your organization's trust centre.
Removes one record from a section of your organization's trust centre. A record that is not there is a 404, never a silent success.
DELETE /v1/trust/{kind}/{id}
| Address | https://api.hanzo.ai/v1/trust/{kind}/{id} |
| Method | DELETE |
| Operation | delete_trust_by_kind_by_id |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Removes one record from a section of your organization's trust centre. A record that is not there is a 404, never a silent success. A control that belongs to the deployment's own inventory is removed by a commit, not by a request.
Request
2 fields.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
kind | path | string | yes | Kind is the section — profile, control, document, subprocessor, policy, faq, update or risk. Anything else is not found. |
id | path | string | yes | ID is the record's id within that section. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | dropped | ok |
200 body — 3 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
deleted | body | boolean | — | Deleted is always true; a record that was not there is a 404 instead. |
id | body | string | — | ID is the record removed. |
kind | body | string | — | Kind is the section. |
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, TrustApi } from 'hanzoai';
const api = new TrustApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.deleteTrustByKindById({ kind: 'kind', id: 'id' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import TrustApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = TrustApi(client).delete_trust_by_kind_by_id(kind='kind', id='id')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.TrustAPI.DeleteTrustByKindById(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, trust_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = trust_api::delete_trust_by_kind_by_id(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.TrustApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new TrustApi(client).deleteTrustByKindById();The method above is the one at the current release of the document. [email protected] (npm) and [email protected] (PyPI) were generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl -X DELETE https://api.hanzo.ai/v1/trust/<kind>/<id> \
-H "Authorization: Bearer $HANZO_API_KEY"The door declares no tool for trust — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
How is this guide?