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

/bff/emailer/received-attachment-list

Returns just the attachment list (filename + size) for one inbound e-mail. Reads only the Resend metadata blob — no S3 fetch, no MIME extraction. Used by the received-grid hover-preview.

EmailergetBffEmailerReceived-attachment-list

Parameters

1 query

Query parameters

· 1
idstringRequired

Received e-mail external ID.

ExamplegJhvIDjTU8IPU573

Response schema

1 status code documented

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

Response example

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

Request example

GET /bff/emailer/received-attachment-list

get
curl -X GET "https://api.bizkithub.com/bff/emailer/received-attachment-list?id=gJhvIDjTU8IPU573" \
  -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