curl --request GET \
--url https://api.example.com/api/tasks/{task_id}{
"id": "<string>",
"asset_id": "<string>",
"task_type": "image_quality",
"celery_task_id": "<string>",
"status": "pending",
"result": "<string>",
"error_message": "<string>",
"retry_count": 123,
"created_at": "<string>",
"started_at": "<string>",
"completed_at": "<string>"
}Get the status of a background task by its ID.
curl --request GET \
--url https://api.example.com/api/tasks/{task_id}{
"id": "<string>",
"asset_id": "<string>",
"task_type": "image_quality",
"celery_task_id": "<string>",
"status": "pending",
"result": "<string>",
"error_message": "<string>",
"retry_count": 123,
"created_at": "<string>",
"started_at": "<string>",
"completed_at": "<string>"
}Successful Response
image_quality, embedding, face_detection, face_clustering Status of a background task execution.
pending, started, success, failure