Hi. I have a trigger in Zapier using Poll in Webhooks. I’m working with simple JSON:
{
"elements": e
{
"type": "ContactViewData",
"contactId": "9565110",
"C_EmailAddress": "test2@gmail.com"
},
{
"type": "ContactViewData",
"contactId": "9565111",
"C_EmailAddress": "test1@gmail.com"
}
],
"page": 1,
"pageSize": 400,
"total": 2
}
But it looks like Zapier treats list of elements as one element (or maybe a text), thus I can’t iterate through them. I am getting a data like this:
It’s strange because I get exactly what I want (list of objects) using Catch Hook in Webhooks sending the same data.
Is there any way to transform data from screen 1 so it look like on a screen 2?