Download attachment file

GET /data/attachment-files/{attachment_file_id}/file/{file_name}

Download a specific attachment file from a comment or chat message. Supports various file types including images and documents.

Path parameters

  • attachment_file_id Required

    Unique identifier of the attachment file

  • file_name Required

    Name of the file to download

Responses

  • 200 application/octet-stream

    Attachment file successfully downloaded

    File content

GET /data/attachment-files/{attachment_file_id}/file/{file_name}
curl \
 --request GET 'http://api.example.com/data/attachment-files/a24a6ea4-ce75-4665-a070-57453082c25/file/document.pdf' \
 --header "Authorization: $API_KEY"