Parameters
1 query
Query parameters
· 1idstringRequiredPost external ID.
a1b2c3d4-e5f6-7890Returns all non-deleted images in the post gallery sorted by active status and position. Includes blob metadata (URL, dimensions) and identifies the main/featured image.
1 query
idstringRequiredPost external ID.
a1b2c3d4-e5f6-78901 status code documented
itemsobject[]RequiredGallery images sorted by active status then position.
idstringOptionalBlob token (used as image identifier in other endpoints).
urlstringOptionalExternal URL if the media is not a blob.
blobanyRequiredBlob file metadata (filename, URL, dimensions, size).
titlestringRequiredImage alt text / title.
positionnumberRequiredDisplay order position (1-based).
deletedbooleanRequiredWhether the image is soft-deleted.
activebooleanRequiredWhether the image is active (visible on the public site).
mainImageIdstringOptionalBlob token of the current main/featured image.
itemCountnumberRequiredTotal number of non-deleted images in the gallery.
{
"items": [
{
"id": "example_id",
"url": "example_url",
"title": "example_title",
"position": 0,
"deleted": false,
"active": false
}
],
"mainImageId": "example_mainImageId",
"itemCount": 0
}GET /bff/post/post-gallery-list
curl -X GET "https://api.bizkithub.com/bff/post/post-gallery-list?id=a1b2c3d4-e5f6-7890" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.