import latitudesh_python_sdk
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.tags.update(tag_id="tag_XBlke2r5RyiyVpG9LPK8tWjalLL", data={
"id": "tag_XBlke2r5RyiyVpG9LPK8tWjalLL",
"type": latitudesh_python_sdk.UpdateTagTagsType.TAGS,
"attributes": {
"name": "Tag Name",
},
})
# Handle response
print(res)Update a Tag in the team.
import latitudesh_python_sdk
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.tags.update(tag_id="tag_XBlke2r5RyiyVpG9LPK8tWjalLL", data={
"id": "tag_XBlke2r5RyiyVpG9LPK8tWjalLL",
"type": latitudesh_python_sdk.UpdateTagTagsType.TAGS,
"attributes": {
"name": "Tag Name",
},
})
# Handle response
print(res)Was this page helpful?