import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
const result = await latitudesh.tags.update({
tagId: "tag_XBlke2r5RyiyVpG9LPK8tWjalLL",
requestBody: {
data: {
id: "tag_XBlke2r5RyiyVpG9LPK8tWjalLL",
type: "tags",
attributes: {
name: "Tag Name",
},
},
},
});
console.log(result);
}
run();{
"data": {
"id": "tag_XBlke2r5RyiyVpG9LPK8tWjalLL",
"type": "tags",
"attributes": {
"name": "Tag Name",
"slug": "tag-name",
"description": "Aliquam ducimus atque et.",
"color": "#73ba73",
"team": {
"id": "team_GplL3jvZnNS2BXLAmWQpf8z354ll",
"name": "633 Team",
"slug": "633-team",
"description": "633 Team",
"address": "2092 Loreta Summit, West Hershelmouth, WY 97161-6201",
"status": "verified",
"currency": {
"id": "cur_AW6Q2D9lqKLpr",
"code": "BRL",
"name": "Brazilian Real",
"currency_id": null
}
}
}
}
}Update a Tag in the team.
import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
const result = await latitudesh.tags.update({
tagId: "tag_XBlke2r5RyiyVpG9LPK8tWjalLL",
requestBody: {
data: {
id: "tag_XBlke2r5RyiyVpG9LPK8tWjalLL",
type: "tags",
attributes: {
name: "Tag Name",
},
},
},
});
console.log(result);
}
run();{
"data": {
"id": "tag_XBlke2r5RyiyVpG9LPK8tWjalLL",
"type": "tags",
"attributes": {
"name": "Tag Name",
"slug": "tag-name",
"description": "Aliquam ducimus atque et.",
"color": "#73ba73",
"team": {
"id": "team_GplL3jvZnNS2BXLAmWQpf8z354ll",
"name": "633 Team",
"slug": "633-team",
"description": "633 Team",
"address": "2092 Loreta Summit, West Hershelmouth, WY 97161-6201",
"status": "verified",
"currency": {
"id": "cur_AW6Q2D9lqKLpr",
"code": "BRL",
"name": "Brazilian Real",
"currency_id": null
}
}
}
}
}Was this page helpful?