List Tasks
GEThttps://api.confident-ai.com/v2/annotation-queues/{annotationQueueId}/queue-ingestion-tasks
Lists the ingestion tasks filling an annotation queue, newest first. Each task is returned as a summary; retrieve a task by id for its filters and reviewers.
curl -X GET "https://api.confident-ai.com/v2/annotation-queues/{annotationQueueId}/queue-ingestion-tasks" \
-H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"{
"success": true,
"data": {
"queueIngestionTasks": [
{
"id": "<QUEUE-INGESTION-TASK-ID>",
"name": "Failed capital lookups",
"enabled": true,
"dataModel": "TRACE"
}
]
},
"link": "https://app.confident-ai.com/project/<PROJECT-ID>/annotation-queues/<ANNOTATION-QUEUE-ID>",
"deprecated": false
}Headers
CONFIDENT_API_KEYstringRequiredThe API key of your Confident AI project.
Path parameters
annotationQueueIdstringRequiredThe id of the annotation queue.
Query parameters
dataModelenumReturns only tasks harvesting this kind of production item.
Response
List Tasks succeeded.
successbooleanIndicates if the request was successful.
dataobjectThe ingestion tasks filling an annotation queue.
Show 1 propertyHide 1 property
queueIngestionTaskslist of objectsThe tasks filling this queue, newest first.
Show 4 propertiesHide 4 properties
idstringThe id of the task, generated by Confident AI.
namestringThe name of the task.
enabledbooleanWhether the task is running.
dataModelenumWhat kind of production item an ingestion task harvests. THREAD tasks fill multi-turn datasets; TRACE and SPAN tasks fill single-turn ones.
Show 3 enum valuesHide 3 enum values
TRACESPANTHREAD
linkstringThis is the URL of the resource on the Confident AI platform.
deprecatedbooleanIndicates if this endpoint is deprecated.