Documentation
Sign inGet started

List a thread message's attachments

GET
/v1/email/threads/{thread_id}/messages/{message_id}/attachments
const atts = await bird.email.threads.messages.attachments("thr_01abc", "rem_01xyz");
console.log(atts.data.map((a) => a.filename));
Returns the attachments on a message in a conversation. Attachment bytes are downloadable for 30 days after the message occurred. After that, this endpoint returns 410 Gone, but the attachment metadata stays readable on the message's attachment_manifest.
响应载荷
data
array of object
必填
显示子属性
data.id
string
必填
Attachment ID, used to download the attachment bytes.
data.filename
nullable string
必填
Original filename, or null when the attachment had none.
data.content_type
nullable string
必填
MIME content type, or null when it could not be determined.
data.size
integer
必填
Attachment size in bytes.