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>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

tag_name
string
required

Response

Successful Response

tag_name
string
required