Task Tracking
Get Status
Get the status of a task by job ID.
Request Body
| Field | Type | Description |
|---|---|---|
job_id | str | The unique identifier for the job to check. |
Response
- 200: Task status retrieved successfully
- Returns:
{ "percent_complete": float, "tags_created": Optional[int], "status": str }
- Returns:
- 404: Job ID not found
Example
{
"job_id": "abc123-def456-ghi789"
}
POST
Python
Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
Python
