This topic was automatically generated from Slack. You can find the original thread here.
Luke : Hi! I’m trying to push an array of objects to Airtable. I’m only taking certain values from each object. I can get it to work for a single object in the array - does anyone know how I can get it to push the entire object?
Dylan Sather (Pipedream) : take a look at this example workflow. First, I turn Structured Mode off for the Records param, which allows me to pass data to the Update Records action using data from a previous step.
In this case I’m passing {{steps.format_airtable_records.records}} , which I’ve formatted in in the format_airtable_records step above. This array of record / field updates is in the format Airtable expects.
Passing a reference to a previous step like this is normally my approach when passing complex sets of data to actions like this. Let me know if this makes sense.