/bff/post-tag/create
Creates a new tag for posts including route. Tag code is automatically normalized to URL-friendly format. Tag must have a unique code within the organisation.
Post TagspostBffPost-tagCreate
Parameters
5 body
Body · 5
codestringRequiredUnique tag code (URL-friendly, automatically normalized)
Length: 1–100
labelstringRequiredDisplay name of the tag
Length: 1–200
colorstringTag color in #RRGGBB format (optional)
internalbooleanMark the tag as internal (private). Internal tags are never returned from public surfaces (post feed, post detail, search). Default: false.
localestringRequiredLocale code for route creation (e.g., cs, en, sk)
Length: 2–2
Request
POST /bff/post-tag/create
curl -X POST "https://api.bizkithub.com/bff/post-tag/create" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"code": "example_code",
"label": "example_label",
"color": "example_color",
"internal": false,
"locale": "example_locale"
}'Response
JSON payload
{
"id": 0,
"code": "example_code",
"label": "example_label",
"internal": false
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.