Parameters
1 query
Query parameters
· 1idstringRequiredEmail message external ID.
Example
abc123Returns just the attachment list (filename, size, download URL) for one outbound e-mail. Used by the grid hover-preview so the list endpoint can stay lightweight.
1 query
idstringRequiredEmail message external ID.
abc1231 status code documented
attachmentListobject[]RequiredidstringRequiredfilenamestringRequireddownloadUrlstringRequiredsizenumberRequired{
"attachmentList": [
{
"id": "example_id",
"filename": "example_filename",
"downloadUrl": "example_downloadUrl",
"size": 0
}
]
}GET /bff/emailer/attachment-list
curl -X GET "https://api.bizkithub.com/bff/emailer/attachment-list?id=abc123" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.