Skip to main content
DELETE
/
tags
/
delete
Python
import os
from unstructured import UnstructuredClient

client = 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
)
tag_response = client.tags.delete(
    tag_name="tag_name",
)
print(tag_response.tag_name)
{
  "tag_name": "<string>"
}

Query Parameters

tag_name
string
required

Response

Successful Response

tag_name
string
required