Documentation
Sign inGet started

List a received email's attachments

GET
/v1/email/inbound-messages/{inbound_message_id}/attachments
curl -X GET "https://us1.platform.bird.com/v1/email/inbound-messages/{inbound_message_id}/attachments" \
  -H "Authorization: Bearer $TOKEN"
Returns metadata for each attachment on a received email. Fetch the raw bytes of an individual attachment with GET /v1/email/inbound-messages/{inbound_message_id}/attachments/{attachment_id}.
Payload di risposta
data
array of object
obbligatorio
Metadata for every attachment on the message. Empty when the message had no attachments.
Mostra attributi secondari
data.id
string
obbligatorio
Attachment ID, stable within the received message.
data.filename
nullable string
obbligatorio
Filename from the attachment's Content-Disposition, or null when the sender did not name the part.
data.content_type
nullable string
obbligatorio
MIME type parsed from the attachment part, or null when absent.
data.size
integer
obbligatorio
Size of the attachment in bytes.