import osfrom unstructured import UnstructuredClientclient = UnstructuredClient( username=os.environ.get("UNSTRUCTURED_USERNAME"), # This is the default and can be omitted password=os.environ.get("UNSTRUCTURED_PASSWORD"), # This is the default and can be omitted)response = client.task_status.get_errors( tracker_id="tracker_id",)print(response.errors)
{ "errors": {}}
Task Tracking
Get Tracker Errors
Get the errors for a progress tracker.
POST
/
progress_tracker
/
errors
Python
import osfrom unstructured import UnstructuredClientclient = UnstructuredClient( username=os.environ.get("UNSTRUCTURED_USERNAME"), # This is the default and can be omitted password=os.environ.get("UNSTRUCTURED_PASSWORD"), # This is the default and can be omitted)response = client.task_status.get_errors( tracker_id="tracker_id",)print(response.errors)