Launch Week 02 wrapped — explore all five launches

Delete Task

DELETEhttps://api.confident-ai.com/v2/annotation-queues/{annotationQueueId}/queue-ingestion-tasks/{queueIngestionTaskId}

Permanently deletes an ingestion task, so it stops filling the queue. Items it already queued are kept.

DELETE/v2/annotation-queues/{annotationQueueId}/queue-ingestion-tasks/{queueIngestionTaskId}
curl -X DELETE "https://api.confident-ai.com/v2/annotation-queues/{annotationQueueId}/queue-ingestion-tasks/{queueIngestionTaskId}" \
  -H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"
200
{
  "success": true,
  "data": {
    "id": "<QUEUE-INGESTION-TASK-ID>"
  },
  "deprecated": false
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The API key of your Confident AI project.

Path parameters

  • annotationQueueIdstringRequired

    The id of the annotation queue the task fills.

  • queueIngestionTaskIdstringRequired

    The id of the queue ingestion task.

Response

Delete Task succeeded.

  • successboolean

    Indicates if the request was successful.

  • dataobject

    A reference to a queue ingestion task by its id.

    Show 1 propertyHide 1 property
    • idstring

      The id of the task, generated by Confident AI.

  • deprecatedboolean

    Indicates if this endpoint is deprecated.

Built byConfident AI