DocsAPI ReferencePost/bff/post/history-list
getPostAdmin BFF

/bff/post/history-list

Returns the commit log for a post: every revision recorded in content__post_history, newest first. Each item carries the version handle, timestamp, locale, author, optional commit message, snapshot title and the byte size of the stored content blob (so the UI can render "1.2 MB" without fetching the body). The actual HTML body lives in blob storage and is only loaded by /history-detail. Pass ?locale=cs to scope to one language.

PostgetBffPostHistory-list

Parameters

2 query

2 total
Query · 2
idstringRequired

Post external ID.

localestring

Optional locale filter (e.g. "cs", "en"). When omitted, the response mixes all languages. Each entry always carries its own locale field regardless.

Request

GET /bff/post/history-list

get
curl -X GET "https://api.bizkithub.com/bff/post/history-list?id=aBcDeFgH12345678&locale=cs" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

JSON payload

{
  "postId": "example_postId",
  "items": [
    {
      "id": "example_id",
      "locale": "example_locale",
      "title": "example_title",
      "contentSize": 0,
      "author": {
        "name": "example_name"
      }
    }
  ]
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key