Skip to main content
PUT
/
api
/
v1
/
tag
/
{tag_id}
Update Tag By Id
curl --request PUT \
  --url 'https://api.example.com/api/v1/tag/{tag_id}?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "color_code": "<string>",
  "attributes": {}
}
'
{
  "message": "Data updated successfully",
  "meta": {},
  "data": {
    "name": "<string>",
    "description": "<string>",
    "color_code": "<string>",
    "attributes": {}
  }
}

Authorizations

api_key
string
query
required

Your API key for authentication. You can generate it from the Settings page. Format: starts with in-.

Path Parameters

tag_id
string<uuid>
required

Body

application/json
name
string | null
description
string | null
color_code
string | null
attributes
Attributes · object

Response

Successful Response

message
string | null
default:Data updated successfully
meta
Meta · object
data
ITagUpdate · object