Help

Re: Download Attachments

1520 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Sree_harsha_Tha
4 - Data Explorer
4 - Data Explorer

Dear All,

A new user to Airtable here. Can we use the scripting blocks to download the attachments in a record in a particular view ? If so, could someone help with me a script please !!
Using this for some automation in #CovidRelief

2 Replies 2
Mike_Pennisi
7 - App Architect
7 - App Architect

A script in the Scripting Block could retrieve the Attachment URL without much difficulty, but it would not be able to initiate a download. That’s because scripts execute in a constrained environment.

There’s a better chance that a custom Airtable Block could do this. You’ll need a “Pro” plan for that, though. Also, the solution will only work as long as you are using Airtable.

You might have better luck starting with Airtable’s “Download CSV” feature. This will give you a plain text file that includes all the attachment URLs. CSV is a widely-recognized format, so you could ask a much larger audience of developers for help downloading files from that. Also, you could reuse that solution with any data provider that offers CSV export.

ng010105
6 - Interface Innovator
6 - Interface Innovator

Jumping in for anyone who finds this thread in the future -

I have created a (Free) python script that allows you to download your attachments,

you can read the code I wrote on github https://github.com/garygng/Airtable_python.