ContributionsMost RecentMost LikesSolutionsRe: API - File Attachment Download - Resource not foundYes. In the end this works for me. #Get image url using your method of choice import urllib.request from PIL import Image from io import BytesIO url = urllib.request.urlopen('https://the_image_url?usertoken=' + quickbase_token) s = url.read() img = Image.open(BytesIO(s)) img.show() #or do whatever you want with itRe: API - File Attachment Download - Resource not found I am trying to download an image Get Outlook for Android Re: API - File Attachment Download - Resource not found No. The response only contains the error. Get Outlook for Android Re: API - File Attachment Download - Resource not found Thanks Doug, I tried that also however no joy. Best regards, Scott Get Outlook for Android Re: API - File Attachment Download - Resource not foundSorry one typo. I meant to type fieldID not fileID in the url example. ------------------------------ Scott Paxton ------------------------------ API - File Attachment Download - Resource not foundHello, I have a problem downloading file attachments with the API. My current language of choice is Python. I have researched several articles on this topic however no joy yet. If I query an attachment using the following syntax I can see the file in the browser. So I know my user token and parameters are correct. https://domain.quickbase.com/up/dbid/a/r_recordid/e_fileid/vversion?usertoken=user_token However when I use the API to try to download the file I only get "Resource not found" as a response. I have attached an image with my python script. Any help / guidance would be greatly appreciated. Thanks! ------------------------------ Scott Paxton ------------------------------