Skip to main content

Download Attachment

GET /attachments/:id

Use the :id to get a specific attachment.

All attachments are stored on Amazon S3 and downloaded via HTTP, see S3 Documentation for more information.

Endpoint URL

 https://api.mixin.one/attachments/:id

Authentication and options

Authorization
Authorized
LimitationNo limitation

Parameters

id
*required
The attachment id. You can get it from POST /attachemts

Example request

curl -i -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $TOKEN" https://api.mixin.one/attachments/$ATTACHMENT_ID
attachment data
{
"data": {
"type": "attachment",
"attachment_id": "7a54e394-1626-4cd4-b967-543932c2a032",
// the url to view the attachment
"view_url": " ... ",
// the url to upload the attachment
"upload_url": " ... ",
}
}
info

You can download the attachment through view_url. If the API returns a 404, it means that the file does not exist or has expired.