/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
Body · 5
idnumberRequiredTag ID
labelstringNew tag name
Length: 1–200
colorstringNew tag color in #RRGGBB format
activebooleanTag status (active/inactive)
internalbooleanMark the tag as internal (private). Internal tags are never returned from public surfaces.
Request
POST /bff/post-tag/update
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.