postPostAdmin BFF

/bff/post/add

Creates a new post for the authenticated organisation. The authenticated member is set as the main author. Returns the external ID of the created post.

PostpostBffPostAdd

Parameters

6 body

6 total
Body · 6
titlestringRequired

Post title.

contentstringRequired

Post content (HTML).

perexstring

Short summary/teaser of the post.

visibilitystringRequired

Post visibility level: public, private, unlisted, or subscribe.

mainCategorystring

Code of the main category to assign.

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

Request

POST /bff/post/add

post
curl -X POST "https://api.bizkithub.com/bff/post/add" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "title": "example_title",
  "content": "example_content",
  "perex": "example_perex",
  "visibility": "example_visibility",
  "mainCategory": "example_mainCategory",
  "locale": "cs"
}'

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.

Get API Key