Multiple PDF attachments only uploading the first file to Airtable

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:

  1. Airtable Field Settings:
  • The field is an Attachment field (confirmed multiple uploads work manually).
  • No restrictions or scripting are applied.
  1. make.com Workflow:

The Airtable module executes without errors, but only the first attachment appears in the record.

Thanks for your expertise!

I’m still stuck, can anyone help me?

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:

:backhand_index_pointing_right: Use an Array Aggregator to combine your files into a proper array
:backhand_index_pointing_right: Each item must be: { "url": "direct_link", "filename": "name.pdf" }
:backhand_index_pointing_right: 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!