Upload multiple attachments to Web Airtable

Here my block

Here de POST json format for Airtable

{
  "fields": {
    "Title": "Title",
    "Images": [
      {
        "url": "https://..img1.jpg"
      },
      {
        "url": "https://..img2.jpg"
      },
      {
        "url": "https://..img3.jpg"
      }
    ]
  }
}

Error 422: INVALID_ATTACHMENT_OBJECT

How to transform a list of images in list of objects to Airtable?

This works, in my test. But this is static.

I need get dinamicaly al itens of list of images URLs.

Make this procedure to solve temporarily.

I believe there is an easier way to do this.