Launch Week 02 wrapped — explore all five launches

Delete Classifier Label

DELETEhttps://api.confident-ai.com/v1/classifiers/{classifierId}/labels/{labelId}

Permanently deletes a label from a classifier. Requires the Starter plan or above.

Warning: This action cannot be undone.

DELETE/v1/classifiers/{classifierId}/labels/{labelId}
curl -X DELETE "https://api.confident-ai.com/v1/classifiers/{classifierId}/labels/{labelId}" \
  -H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"
200
{
  "success": true,
  "data": {
    "id": "LABEL-ID"
  }
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The API key of your Confident AI project.

Path parameters

  • classifierIdstringRequired

    The unique identifier of the classifier.

  • labelIdstringRequired

    The unique identifier of the label to delete.

Response

  • successboolean

    Indicates if the deletion was successful.

  • dataobject

    Show 1 propertyHide 1 property
    • idstring

      The unique identifier of the deleted label.

Built byConfident AI