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.
Return the current OOB default tag definitions (name + available_values).
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.tags.list_defaults() print(response)
A valid request URL is required to generate request examples
[ { "name": "<string>", "available_values": [ "<string>" ] } ]
{ "detail": "<string>" }
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