I started using Coda API/Webhooks recently so I am kinda new to this.
I understand that if you send a key:value pair JSON format to automation listening to webhook (for example { “name”: “Jhon”, “surname”: “Smtih”} you can than reference that data in Step1 results and do with it what you need to do.
But is it possible for Webhook to receive array of objects ( [{}, {}, {}] ) and then use .forEach on Step1 result to loop over them and do what you need or Webhook is limited to only 1 object?
I already tried that but was getting some errors, so not sure if its a problem with structure or you just have to send a “single” object to Webhook only