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

/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

5 total
Body · 5
codestringRequired

Unique tag code (URL-friendly, automatically normalized)

Length: 1100
labelstringRequired

Display name of the tag

Length: 1200
colorstring

Tag color in #RRGGBB format (optional)

internalboolean

Mark the tag as internal (private). Internal tags are never returned from public surfaces (post feed, post detail, search). Default: false.

localestringRequired

Locale code for route creation (e.g., cs, en, sk)

Length: 22

Request

POST /bff/post-tag/create

post
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.

Get API Key