Launch Week 02 wrapped — explore all five launches

Delete Control

DELETEhttps://api.confident-ai.com/v2/organization/governance-controls/{controlId}

Permanently deletes a governance control, every version of its definition, and every verdict recorded against it. Any policy holding the control loses it and stops applying that check.

Warning: This action cannot be undone. To stop a control gating one policy without deleting it, remove it from that policy instead.

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

Headers

  • CONFIDENT_API_KEYstringRequired

    The organization API key for your Confident AI organization.

Path parameters

  • controlIdstringRequired

    The id of the governance control.

Response

Delete Control succeeded.

  • successboolean

    Indicates if the request was successful.

  • dataobject

    A reference to a governance control by its id.

    Show 1 propertyHide 1 property
    • idstring

      The id of the governance control.

  • deprecatedboolean

    Indicates if this endpoint is deprecated.

Built byConfident AI