BizKitHub
DocsAPI ReferencePost/bff/post/reference-image-link-blob
postPostAdmin BFF

/bff/post/reference-image-link-blob

Registers a previously uploaded blob (token from /bff/blob/upload) as an org-level reference image for the AI thumbnail generator. New reference images are inactive by default; the admin opts each one in explicitly via /reference-image-toggle-active.

PostpostBffPostReference-image-link-blob

Parameters

JSON body

Request body

application/json
blobTokenstringRequired

Blob token returned by /bff/blob/upload.

Response schema

1 status code documented

200Success
successbooleanRequired
idstringRequired

Reference image record id.

Response example

application/json
{
  "success": false,
  "id": "example_id"
}

Request example

POST /bff/post/reference-image-link-blob

post
curl -X POST "https://api.bizkithub.com/bff/post/reference-image-link-blob" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "blobToken": "example_blobToken"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key