Introducing confident-trace — our new tracing SDK

Delete Dataset Ingestion Task

(v2)

DELETE

Permanently deletes an ingestion task and unschedules its harvesting job. Goldens it already created stay in the dataset. This action cannot be undone.

DELETE/v2/datasets/{datasetId}/dataset-ingestion-tasks/{datasetIngestionTaskId}
curl -X DELETE "https://api.confident-ai.com/v2/datasets/{datasetId}/dataset-ingestion-tasks/{datasetIngestionTaskId}" \
  -H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"
200
{
  "success": true,
  "data": {
    "id": "<DATASET-INGESTION-TASK-ID>"
  },
  "deprecated": false
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The API key of your Confident AI project.

Path parameters

  • datasetIdstringRequired

    The unique id of the dataset.

  • datasetIngestionTaskIdstringRequired

    The unique id of the ingestion task.

Response

Delete Dataset Ingestion Task succeeded.

  • successboolean

    Indicates if the request was successful.

  • dataobject

    Show 1 propertyHide 1 property
    • idstring

      The unique id of the ingestion task.

  • deprecatedboolean

    Indicates if this endpoint is deprecated.

Built byConfident AI