BizKitHub
DocsAPI ReferenceEmailer/bff/emailer/attachment-list
getEmailerAdmin BFF

/bff/emailer/attachment-list

Returns 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.

EmailergetBffEmailerAttachment-list

Parameters

1 query

Query parameters

· 1
idstringRequired

Email message external ID.

Exampleabc123

Response schema

1 status code documented

200Success
attachmentListobject[]Required
Each array item:
idstringRequired
filenamestringRequired
downloadUrlstringRequired
sizenumberRequired

Response example

application/json
{
  "attachmentList": [
    {
      "id": "example_id",
      "filename": "example_filename",
      "downloadUrl": "example_downloadUrl",
      "size": 0
    }
  ]
}

Request example

GET /bff/emailer/attachment-list

get
curl -X GET "https://api.bizkithub.com/bff/emailer/attachment-list?id=abc123" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key