DocsAPI ReferencePost Category/bff/post-category/save
postPost CategoryAdmin BFF

/bff/post-category/save

Updates an existing post category. All fields except id and locale are optional — only provided fields are changed. Supports renaming, changing slug, description, and re-parenting (moving under a different parent or to top-level).

Post CategorypostBffPost-categorySave

Parameters

6 body

6 total
Body · 6
idstringRequired

Category external ID to edit.

localestringRequired

Communication locale code used to filter content.

Supported locales: cs, en, fr, it, pl, de, sk, sv, es, zh, ja, uk, da.

Length: 22
namestring

New category name.

Length: 1255
descriptionstring

New category description.

slugstring

New URL slug for the category route. If empty string, auto-generated from name. Only applied when name is also provided.

parentIdstring | null

Request

POST /bff/post-category/save

post
curl -X POST "https://api.bizkithub.com/bff/post-category/save" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "id": "abc123def456ghij",
  "locale": "cs",
  "name": "Tech News",
  "description": "Latest technology news.",
  "slug": "tech-news"
}'

Response

JSON payload

{
  "success": false
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key