SendStreak logo
menu

Get a message's attachments

Returns a message’s attachments with their base64-encoded content - split from the message read to keep that response light.

Endpoint

GET https://api.sendstreak.com/v2/accounts/{accountId}/contacts/{contactId}/messages/{messageId}/attachments

All v2 endpoints require a bearer token - see Authentication.

Path parameters

Parameter Type Description
accountId string The account the request is scoped to.
contactId string  
messageId string  

Response

The attachments, with content.

[
  {
    "filename": "hello.txt",
    "content": "SGVsbG8gV29ybGQhCgo="
  }
]

Errors

Status Description
401 Missing or invalid token, or the token is not authorized for this account/user.
404 The requested resource does not exist.

See Errors and rate limits for what error responses look like.

Curl example

curl --location --request GET 'https://api.sendstreak.com/v2/accounts/YOUR_ACCOUNT_ID/contacts/YOUR_CONTACT_ID/messages/YOUR_MESSAGE_ID/attachments' \
--header 'Authorization: Bearer YOUR_API_TOKEN'
Try SendStreak for Free now!