package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/operations"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.Tags.Update(ctx, "tag_XBlke2r5RyiyVpG9LPK8tWjalLL", operations.UpdateTagTagsRequestBody{
Data: &operations.UpdateTagTagsData{
ID: latitudeshgosdk.Pointer("tag_XBlke2r5RyiyVpG9LPK8tWjalLL"),
Type: operations.UpdateTagTagsTypeTags.ToPointer(),
Attributes: &operations.UpdateTagTagsAttributes{
Name: latitudeshgosdk.Pointer("Tag Name"),
},
},
})
if err != nil {
log.Fatal(err)
}
if res.CustomTag != nil {
// handle response
}
}{
"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.
package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/operations"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.Tags.Update(ctx, "tag_XBlke2r5RyiyVpG9LPK8tWjalLL", operations.UpdateTagTagsRequestBody{
Data: &operations.UpdateTagTagsData{
ID: latitudeshgosdk.Pointer("tag_XBlke2r5RyiyVpG9LPK8tWjalLL"),
Type: operations.UpdateTagTagsTypeTags.ToPointer(),
Attributes: &operations.UpdateTagTagsAttributes{
Name: latitudeshgosdk.Pointer("Tag Name"),
},
},
})
if err != nil {
log.Fatal(err)
}
if res.CustomTag != nil {
// handle response
}
}{
"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?