from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.tags.list()
# Handle response
print(res){
"data": [
{
"id": "tag_br3pyBM8YeIyBQGR0rbocVrmJnE",
"type": "tags",
"attributes": {
"name": "Angrod",
"slug": "angrod",
"description": "Dolorem vel distinctio et.",
"color": "#141515",
"team": {
"id": "team_RPp3R8oZyjSAGGP7oeMEsR8yPNgo",
"name": "627 Team",
"slug": "627-team",
"description": "627 Team",
"address": "977 Julietta Views, West Ocie, KS 10398-1982",
"status": "verified",
"currency": {
"id": "cur_AW6Q2D9lqKLpr",
"code": "BRL",
"name": "Brazilian Real",
"currency_id": null
}
}
}
}
]
}List all Tags in the team.
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.tags.list()
# Handle response
print(res){
"data": [
{
"id": "tag_br3pyBM8YeIyBQGR0rbocVrmJnE",
"type": "tags",
"attributes": {
"name": "Angrod",
"slug": "angrod",
"description": "Dolorem vel distinctio et.",
"color": "#141515",
"team": {
"id": "team_RPp3R8oZyjSAGGP7oeMEsR8yPNgo",
"name": "627 Team",
"slug": "627-team",
"description": "627 Team",
"address": "977 Julietta Views, West Ocie, KS 10398-1982",
"status": "verified",
"currency": {
"id": "cur_AW6Q2D9lqKLpr",
"code": "BRL",
"name": "Brazilian Real",
"currency_id": null
}
}
}
}
]
}Was this page helpful?