Parameters
1 query
Query parameters
· 1idstringRequiredPost external ID.
Example
aBcDeFgH12345678Returns all non-deleted files attached to the post (separate from the gallery), newest first. Each item carries the filename, public download URL, byte size and content type.
1 query
idstringRequiredPost external ID.
aBcDeFgH123456781 status code documented
itemsobject[]RequiredidnumberRequiredAttachment row id.
tokenstringRequiredUnderlying blob token — feed into /bff/drive/detail for previews.
filenamestringRequiredOriginal filename.
downloadUrlstringRequiredPublic download URL on blob storage.
sizenumberRequiredFile size in bytes.
contentTypestringRequiredMIME content type.
tagstring | nullRequiredOptional categorisation tag from core__blob.tag.
insertedDateDate | string | string | numberRequiredWhen the file was attached.
When the file was attached.
itemCountnumberRequiredNumber of non-deleted attachments.
{
"items": [
{
"id": 0,
"token": "example_token",
"filename": "example_filename",
"downloadUrl": "example_downloadUrl",
"size": 0,
"contentType": "example_contentType"
}
],
"itemCount": 0
}GET /bff/post/post-attachment-list
curl -X GET "https://api.bizkithub.com/bff/post/post-attachment-list?id=aBcDeFgH12345678" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.