Skip to main content
PUT
/
tag
/
update
Tag - Update
curl --request PUT \
  --url https://api.skulabs.com/tag/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tag_id": "507f1f77bcf86cd799439011",
  "name": "<string>",
  "color": "red"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
tag_id
string
required

ID of the tag to update

Example:

"507f1f77bcf86cd799439011"

name
string

New tag name

color
enum<string>

New tag color

Available options:
red,
orange,
yellow,
green,
blue,
purple,
indigo,
gray,
maroon,
fuchsia,
chartreuse,
dodger,
salmon,
cornflower,
khaki,
steel,
plum

Response

Tag updated successfully

success
boolean
required

Whether the operation succeeded