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.tags.list_sensitivity_defaults()print(response)
{ "detail": "<string>"}
Tags
Get Sensitivity Default Tags Route
Return the current OOB sensitivity tag definitions (name + available_values).
GET
/
tags
/
sensitivity_default
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.tags.list_sensitivity_defaults()print(response)