DocsAPI ReferenceBlob/bff/blob/upload
postBlobAdmin BFF

/bff/blob/upload

Uploads a file via multipart/form-data. The request body must contain a "file" field with the binary data, an optional "blobPath" for storage path prefix, and an optional "tag" for categorization. Returns a blob token for referencing the uploaded file.

BlobpostBffBlobUpload

Parameters

3 body

3 total
Body · 3
filestringRequired

Binary file payload.

Format: binary
Default: File
blobPathstring

Optional storage path prefix.

tagstring

Optional categorization tag.

Request

POST /bff/blob/upload

post
curl -X POST "https://api.bizkithub.com/bff/blob/upload" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "file": "File",
  "blobPath": "post/N195wg3F34tFierY",
  "tag": "post"
}'

Response

JSON payload

{
  "blobToken": "blb_abc123xyz"
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key