Sending an array through webhooks to Make (for stripe)

hi guys,
I guess it isn’t possible to send arrays through webooks? Do i need to connect the text then separate it when it arrives in Make?

I’m trying to create invoice items before i can create an invoice in stripe, but i need to be able to push through multiple “prices” so it creates more than one invoice item (i’m probably doing this part wrong so please chime in if you have experience with it. I understand it is not a glide issue).

What I normally do here is send a JSON object that contains a collection. So something like:

{
  [ "item 1", "item 2", "item 3", etc... ]
}

You can then stick a Parse JSON module in front of your Iterator, and your Iterator will pass each item in the collection one by one to the rest of the flow.

3 Likes