Hey! Can I understand the use case a little more.
- Where are you getting the JSON from?
- What is the next step?
- Why is it important to retain the structure in this particular case?
@rpfw34 - In general and as far as I understand it, unless the next step input field supports line items, array values from one step will be passed as a comma-separated string to the subsequent steps.
Hi, Thanks for the response.
In my my first step(When this happens), I am receiving the JSON using web hook (catch hook) as I mentioned my json has arrays of string
{
"images": :
"xxxx.jpg",
"yyyyy.jpg",
"zzz.jpg"
]}
In the second step (do this), the action, I am trying to POST the same message (forward without modifying) using webhook by zapier.
But the message that gets forwarded is not an array of sting but a single string which comma separated concatenated string of the array.
"images": "xxxx.jpg,yyyyy.jpg,zzz.jpg".
If you observe it is a single string within double quotes.
I have use case where I just need to maintain the structure.
Thanks.
Hi @rpfw34
Just checking in. Did you manage to get this resolved?