Launch Week 02 wrapped — explore all five launches

Clear Override

DELETEhttps://api.confident-ai.com/v2/projects/{projectId}/models/{modelType}

Removes the project's platform or simulation model override, so the project falls back to the organization's default for that type and the override toggle in its model settings shows as off. The evaluation model cannot be cleared, so the evaluation path segment is rejected. Idempotent: it succeeds even when no override exists.

DELETE/v2/projects/{projectId}/models/{modelType}
curl -X DELETE "https://api.confident-ai.com/v2/projects/{projectId}/models/{modelType}" \
  -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200
{
  "success": true,
  "data": {
    "source": "project"
  },
  "deprecated": false
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The organization API key for your Confident AI organization.

Path parameters

  • projectIdstringRequired

    The id of the project, which must belong to the organization your API key is scoped to.

  • modelTypeenumRequired

    Which of the project's models to act on.

Response

Clear Override succeeded.

  • successboolean

    Indicates if the request was successful.

  • dataobject

    Confirmation that the project no longer overrides this model type. source is always organization, since the project now follows the organization's default.

    Show 1 propertyHide 1 property
    • sourceenum

      Where the model in effect for a project comes from: project when the project has an override of its own, organization when it follows the organization's default. The evaluation model is always project scoped, so it only ever reports project.

      Show 2 enum valuesHide 2 enum values
      • project
      • organization
  • deprecatedboolean

    Indicates if this endpoint is deprecated.

Built byConfident AI