Launch Week 02 wrapped — explore all five launches

Clear Project Model Override

DELETEhttps://api.confident-ai.com/v1/projects/{projectId}/models/{type}

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

DELETE/v1/projects/{projectId}/models/{type}
curl -X DELETE "https://api.confident-ai.com/v1/projects/{projectId}/models/{type}" \
  -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200
{
  "success": true,
  "data": {
    "deleted": true,
    "source": "organization"
  }
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The organization API key for your Confident AI organization.

Path parameters

  • projectIdstringRequired

    The unique identifier of the project.

  • typeenumRequired

    Which override to clear; the evaluation model cannot be cleared.

Response

  • successboolean

    Indicates if the request was successful

  • dataobject

    Show 2 propertiesHide 2 properties
    • deletedboolean

      Always true once the override is removed

    • sourceenum

      The project now follows the organization's default model for the cleared type

      Show 1 enum valueHide 1 enum value
      • organization
Built byConfident AI