Thomas Gerbet (tgerbet)2020-04-10 10:22 Hi, You could indeed retrieve the attachment via the endpoint GET /artifact_files/:id. The content you get is Base64 encoded and is paginated. That means you will need to iterate over the whole collection and concatenate each part to get the whole blob. These days thre is however an easier way, the API exposes an URL in the file_descriptions in the field html_url. This URL can be called like a standard REST endpoint and it returns the whole file.
Theo Seohs (seohs.theo)2020-04-10 09:09 Hi, It would be nice to hear your opinion, but it seems that using python base64.b64decode(attch_data) and saving it works for me. I have to try with all my files but it already worked with .png and excel. Thanks.