DocsAPI ReferencePost Tags/bff/post-tag/update
postPost TagsAdmin BFF

/bff/post-tag/update

Updates properties of an existing tag. Can update name, color, active status, or the internal (private) flag. Tag code cannot be changed.

Post TagspostBffPost-tagUpdate

Parameters

5 body

5 total
Body · 5
idnumberRequired

Tag ID

labelstring

New tag name

Length: 1200
colorstring

New tag color in #RRGGBB format

activeboolean

Tag status (active/inactive)

internalboolean

Mark the tag as internal (private). Internal tags are never returned from public surfaces.

Request

POST /bff/post-tag/update

post
curl -X POST "https://api.bizkithub.com/bff/post-tag/update" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "id": 0,
  "label": "example_label",
  "color": "example_color",
  "active": false,
  "internal": false
}'

Response

JSON payload

{
  "success": true
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key