Launch Week 02 wrapped — explore all five launches

Create Group

POSThttps://api.confident-ai.com/v2/organization/governance-control-groups

Creates a governance control group and returns its id. The group starts empty, since which controls belong to it is set on each control rather than here, and putting a control in a group has no effect on which projects it gates or when it is assessed.

POST/v2/organization/governance-control-groups
curl -X POST "https://api.confident-ai.com/v2/organization/governance-control-groups" \
  -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>" \
  -H "Content-Type: application/json" \
  -d '{
  "name": "SOC 2 readiness",
  "description": "The controls our SOC 2 auditor asks about each quarter."
}'
200
{
  "success": true,
  "data": {
    "id": "<GOVERNANCE-CONTROL-GROUP-ID>"
  },
  "link": "https://app.confident-ai.com/organization/<ORGANIZATION-ID>/governance/control-groups",
  "deprecated": false
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The organization API key for your Confident AI organization.

Request body

  • namestringRequired

    The name of the control group, unique within your organization.

  • descriptionstring | null

    What the group collects. Send null to leave it unset.

Response

Create Group succeeded.

  • successboolean

    Indicates if the request was successful.

  • dataobject

    A reference to a governance control group by its id.

    Show 1 propertyHide 1 property
    • idstring

      The id of the governance control group.

  • linkstring

    This is the URL of the resource on the Confident AI platform.

  • deprecatedboolean

    Indicates if this endpoint is deprecated.

Built byConfident AI