Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Abort a progress tracker and update the tracker in Postgres.
Python
# pip install deasy-sdk import os from deasy import DeasyClient client = DeasyClient( base_url=os.environ["UNSTRUCTURED_CLIENT_BASE_URL"], username=os.environ["UNSTRUCTURED_USERNAME"], password=os.environ["UNSTRUCTURED_PASSWORD"], auth_method="basic", ) response = client.task_status.abort( "example_tracker_id", ) print(response.status)
A valid request URL is required to generate request examples
{ "status": "<string>", "message": "<string>" }
{ "detail": "<string>" }
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>", "input": "<unknown>", "ctx": {} } ] }
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Successful Response