Launch Week 02 wrapped — explore all five launches

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.

GET/v2/annotation-queues/{annotationQueueId}/queue-ingestion-tasks
curl -X GET "https://api.confident-ai.com/v2/annotation-queues/{annotationQueueId}/queue-ingestion-tasks" \
  -H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"
200
{
  "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_KEYstringRequired

    The API key of your Confident AI project.

Path parameters

  • annotationQueueIdstringRequired

    The id of the annotation queue.

Query parameters

  • dataModelenum

    Returns only tasks harvesting this kind of production item.

Response

List Tasks succeeded.

  • successboolean

    Indicates if the request was successful.

  • dataobject

    The ingestion tasks filling an annotation queue.

    Show 1 propertyHide 1 property
    • queueIngestionTaskslist of objects

      The tasks filling this queue, newest first.

      Show 4 propertiesHide 4 properties
      • idstring

        The id of the task, generated by Confident AI.

      • namestring

        The name of the task.

      • enabledboolean

        Whether the task is running.

      • dataModelenum

        What 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
        • TRACE
        • SPAN
        • THREAD
  • linkstring

    This is the URL of the resource on the Confident AI platform.

  • deprecatedboolean

    Indicates if this endpoint is deprecated.

Built byConfident AI