Get Message Attachment
Path Parameters
idstringRequired
Message ID
attachmentIdstringRequired
Attachment ID
const response = await fetch("https://reloop.sh/api/inbox/v1/messages/{id}/attachments/{attachmentId}", {
method: "GET",
headers: {
"Authorization": "Bearer re_123456789",
},
});
const data = await response.json();{
"id": "con_123456789",
"filename": "example_filename",
"contentType": "example_contentType",
"size": 0,
"storagePath": "example_storagePath",
"contentDisposition": "example_contentDisposition",
"contentId": "example_contentId",
"createdAt": "2026-03-23T10:00:00.000Z"
}Was this page helpful?