List Dataset Ingestion Tasks
GEThttps://api.confident-ai.com/v1/datasets/{alias}/dataset-ingestion-tasks
Lists the ingestion tasks on a dataset, newest first, as summary rows. Retrieve a task by id for its full configuration and the number of goldens it has created. Requires the Starter plan or above.
curl -X GET "https://api.confident-ai.com/v1/datasets/{alias}/dataset-ingestion-tasks" \
-H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"{
"success": true,
"data": {
"datasetIngestionTasks": [
{
"id": "INGESTION-TASK-ID",
"name": "Harvest failed checkouts",
"enabled": true,
"dataModel": "TRACE"
}
]
},
"link": "https://app.confident-ai.com/project/<PROJECT-ID>/workflows"
}Headers
CONFIDENT_API_KEYstringRequiredThe API key of your Confident AI project.
Path parameters
aliasstringRequiredThe unique alias of the dataset.
Query parameters
dataModelenumOnly return tasks harvesting this kind of item. Omit to return all of them.
Response
successbooleanIndicates if the request was successful.
dataobjectShow 1 propertyHide 1 property
datasetIngestionTaskslist of objectsThe dataset's ingestion tasks, newest first, as summary rows.
Show 4 propertiesHide 4 properties
idstringThe unique identifier of the ingestion task.
namestringThe name of the ingestion task.
enabledbooleanWhether the task is currently harvesting.
dataModelenumWhat kind of item the task harvests.
Show 3 enum valuesHide 3 enum values
TRACESPANTHREAD
linkstringA link to the workflows page.