BizKitHub
DocsAPI ReferenceDisk/api/v1/disk/store-blob
postDiskPublic API v1

/api/v1/disk/store-blob

Uploads a file via multipart/form-data to blob storage and returns a public download URL. Form fields: file (required, the file blob), blobPath (optional, storage directory prefix), tag (optional, metadata label).

diskpostApiV1DiskStore-blob

Parameters

JSON body

Request body

application/json
filestringRequiredbinary

Binary file payload.

Default: File
blobPathstringOptional

Optional storage directory prefix.

tagstringOptional

Optional metadata label.

Response schema

1 status code documented

200Success

This response returns no JSON body.

Response example

application/json
{
  "success": true
}

Request example

POST /api/v1/disk/store-blob

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

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key