BizKitHub
DocsAPI ReferenceBranch/bff/branch/gallery-list
getBranchAdmin BFF

/bff/branch/gallery-list

Returns all non-deleted images of the branch gallery ordered by active first, then by position ascending. Includes blob metadata and the main image identifier.

BranchgetBffBranchGallery-list

Parameters

1 query

Query parameters

· 1
slugstringRequired

Branch slug.

Exampleexample_slug

Response schema

1 status code documented

200Success
itemsobject[]Required
Each array item:
idstringOptional

Blob token (used as image identifier).

blobanyRequired

Blob metadata (filename, URL, size).

titlestringRequired

Image description / alt text.

positionnumberRequired
activebooleanRequired
deletedbooleanRequired
isLogobooleanRequired
isMainPhotobooleanRequired
mainImageIdstringOptional

Blob token of the main image, if set.

itemCountnumberRequired

Response example

application/json
{
  "items": [
    {
      "id": "example_id",
      "title": "example_title",
      "position": 0,
      "active": false,
      "deleted": false,
      "isLogo": false,
      "isMainPhoto": false
    }
  ],
  "mainImageId": "example_mainImageId",
  "itemCount": 0
}

Request example

GET /bff/branch/gallery-list

get
curl -X GET "https://api.bizkithub.com/bff/branch/gallery-list?slug=example_slug" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key