Hey everyone,
I’m feeling a bit overwhelmed here, probably because of my limited knowledge, so I’d really appreciate any help I can get. Here’s what I’m dealing with: I’m using a Webhook to transfer data in JSON format. This data includes questions and answers from a form. When it arrives in Make, it’s bundled together, and there’s an array called “fragen_antworten” (German for “questions_answers”). Within this array, there are collections corresponding to the questions asked in the form.
The goal is to pair each question with its respective answer and format it into a single string. I need this string to be neatly structured so that I can easily input it into the records in my CRM.
Here’s the structure I’m aiming for:
Question 1: [Question text]
Answer 1: [Answer text]
Question 2: [Question text]
Answer 2: [Answer text]
Question 3: [Question text]
Answer 3: [Answer text]
And so on…
But honestly, I’m not quite sure how to go about achieving this. Any guidance would be greatly appreciated!