/bff/post/save
Saves changes to an existing post including title, content, visibility, category, authors, and publish date. The content is saved for the specified locale.
PostpostBffPostSave
Parameters
11 body
Body · 11
localestringRequiredLocale code for the content being saved (e.g. "cs", "en").
idstringRequiredPost external ID.
titlestringRequiredPost title.
contentstringRequiredPost content (HTML).
perexstringShort summary/teaser of the post.
metaTitlestringSEO
metaDescriptionstringSEO for the locale. Empty string clears it. Omit to leave unchanged.
visibilitystringRequiredPost visibility level: public, private, unlisted, or subscribe.
mainCategoryIdstringExternal ID of the main category to assign.
authorIdsstring[]RequiredOrdered list of author external IDs. First is the main author.
publishedDatestringISO date string for the publish date. Omit or null to leave unpublished.
Request
POST /bff/post/save
curl -X POST "https://api.bizkithub.com/bff/post/save" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"locale": "example_locale",
"id": "example_id",
"title": "example_title",
"content": "example_content",
"perex": "example_perex",
"metaTitle": "example_metaTitle",
"metaDescription": "example_metaDescription",
"visibility": "example_visibility",
"mainCategoryId": "example_mainCategoryId",
"authorIds": [
"string"
],
"publishedDate": "example_publishedDate"
}'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.