from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.tags.delete(tag_id="invalid-id")
# Use the SDK ...
Tags
Delete tag
Update a Tag in the team.
DELETE
/
tags
/
{tag_id}
Python (SDK)
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.tags.delete(tag_id="invalid-id")
# Use the SDK ...