from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.tags.delete(tag_id="<id>")
# Use the SDK ...Update a Tag in the team.
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.tags.delete(tag_id="<id>")
# Use the SDK ...Was this page helpful?