Async Tasks
{
"taskId": "abc123",
"url": "https://api.roboflow.com/my-workspace/asynctasks/abc123"
}Get Task Status
$ curl --location "https://api.roboflow.com/my-workspace/asynctasks/abc123?api_key=$ROBOFLOW_API_KEY"Response Fields
- taskId (string) - The async task ID.
- status (string) - The current task status. Common statuses are created, running, completed, and failed. Terminal statuses are completed and failed.
- progress (object or null) - Task progress when available, in the form `{ "current": <number>, "total": <number> }`.
- result (object) - Present when the task completed successfully.
- error (string) - Present when the task failed.Running Task
Completed Task
Failed Task
Errors
Last updated
Was this helpful?