Get the processing status of a dataset
GET/api/v1/datasets/{dataset_id}/status
Get the processing status of a dataset
Get the processing status of a dataset
curl https://api.adaptionlabs.ai/api/v1/datasets/$DATASET_ID/status \
-H "Authorization: Bearer $ADAPTION_API_KEY"{
"dataset_id": "dataset_id",
"error": {
"message": "message"
},
"progress": {
"percent": 0,
"processed_rows": 0,
"total_rows": 0
},
"row_count": 0,
"status": "pending"
}Returns Examples
{
"dataset_id": "dataset_id",
"error": {
"message": "message"
},
"progress": {
"percent": 0,
"processed_rows": 0,
"total_rows": 0
},
"row_count": 0,
"status": "pending"
}