I’m trying to upload multiple PDFs to an Airtable attachment field using make.com, but only the first file is being added to the record. Here’s what I’ve verified:
Airtable Field Settings:
The field is an Attachment field (confirmed multiple uploads work manually).
If you’re trying to upload multiple PDFs to an Airtable attachment field and only the first one shows up, here’s what actually works:
Use an Array Aggregator to combine your files into a proper array Each item must be: { "url": "direct_link", "filename": "name.pdf" } In the Airtable module, click the attachment field, choose “map”, and pass this full array.
Also:
If you’re building the array with Set Variable, use map() to structure it right.
Google Drive links must be in direct download format (uc?export=download&id=...).
That’s it. Once the array format is clean, Airtable accepts all files. Works smoothly now!