Delete Calibrations

This page helps understand how to delete calibrations from a workspace.

Quickstart

Before invoking the APIs, the client must obtain the clientId and auth token from Deepen AI. If you are a calibration admin, you can create different Access Tokens using the UI and use those instead. clientId is part of the path parameters in most API calls, and the auth token should be prefixed with “Bearer “ and passed to the ‘Authorization’ header in all API requests. How to get Access Tokens can be found on the following link: Access token for APIs

Delete Calibrations

This POST api sends the user-provided calibration_ids to the server to delete them.

https://tools.calibrate.deepen.ai/api/v2/external/clients/{clientId}/delete_calibration_dataset

config.json

{
    "calibration_ids":
    [
        "XXXXXXXXXXXXXXXXX",
        "XXXXXXXXXXXXXXXXX"
    ]
}

Request

Path parameters

Parameter nameParameter typeDescription

clientId

string

ClientId obtained from Deepen AI

Body

KeyValueDescription

file

config.json

Name of the calibration group

Response

On success, it returns the message: "Deleted the calibration_ids provided in the config.json"

On failure, it returns the message: "Unable to perform the operation. Please check the calibration_ids in the config.json"

Last updated