Launch Week 02 wrapped — explore all five launches

Delete Policy

DELETEhttps://api.confident-ai.com/v2/organization/governance-policies/{policyId}

Permanently deletes a governance policy and every verdict recorded under it. The projects enrolled in it are not deleted, but they are left governed by nothing until you enroll them in another policy, and the controls it applied are not deleted either and stay available to other policies. A policy that other policies extend cannot be deleted — detach it from them first. The check and the delete run in a single serializable transaction, so a policy cannot be deleted out from under a concurrent write that is adding a child to it.

Warning: This action cannot be undone.

DELETE/v2/organization/governance-policies/{policyId}
curl -X DELETE "https://api.confident-ai.com/v2/organization/governance-policies/{policyId}" \
  -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200
{
  "success": true,
  "data": {
    "id": "<GOVERNANCE-POLICY-ID>"
  },
  "deprecated": false
}