Launch Week 02 wrapped — explore all five launches

Delete Queue Ingestion Task

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

Permanently deletes an ingestion task and unschedules its routing job. Items it already queued stay in the queue. Requires the Starter plan or above.

Warning: This action cannot be undone.

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

Headers

  • CONFIDENT_API_KEYstringRequired

    The API key of your Confident AI project.

Path parameters

  • queueIdstringRequired

    The unique identifier of the annotation queue.

  • queueIngestionTaskIdstringRequired

    The unique identifier of the ingestion task to delete.

Response

  • successboolean

    Indicates if the deletion was successful.

  • dataobject

    Show 1 propertyHide 1 property
    • idstring

      The unique identifier of the deleted ingestion task.

Built byConfident AI