Parameters
JSON body
Request body
application/jsonfilestringRequiredbinaryBinary file payload.
Default:
FileblobPathstringOptionalOptional storage directory prefix.
tagstringOptionalOptional metadata label.
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).
JSON body
filestringRequiredbinaryBinary file payload.
FileblobPathstringOptionalOptional storage directory prefix.
tagstringOptionalOptional metadata label.
1 status code documented
This response returns no JSON body.
{
"success": true
}POST /api/v1/disk/store-blob
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"
}'All BizKitHub public API endpoints require authentication via API key.