How to fetch text from a bundle

could someone help me with the parsing of the following input bundle please ?

input.json (2.9 KB)

I get bundles from List Issue Comments Jira module and I want to fetch the text from each bundle and join it together like
I have added /form_submissions endpoint to DB API and client’s permissions have been updated so, they can start requesting the data now. Here is the document that explains what they need to do I am going to document this feature now.

and if there are multiple comments returned by Jira Module it should be aggregated as an array of strings.

Yes, that is possible. You’ll need to use a couple of built-in functions.

To do this, you can use these built-in functions:

  • map
    map(complex array; key; [key for filtering]; [possible values for filtering separated by a comma])

  • flatten
    flatten(array)

  • first
    first(array)

  • join
    join(array; separator)

  • trim (optional)
    trim(text)

These functions may have also been covered in the Make Academy tutorials — refer to the Make Academy Course Overview to learn more.

Here’s an example of how you can use these functions together:

{{trim(join(map(first(map(flatten(map(1.array; "content")); "content")); "text"); emptystring))}}
(copy-paste the above into the field, or type it exactly as shown)

e.g.:
Screenshot 2025-09-26 093833
Screenshot 2025-09-26 093847

This is just an example. Your final solution may or may not look like this depending on your requirements.

Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —

Learn Make

How-Tos

Useful to Know

My Custom AppAbsolutely Free!

Save headaches and operation credits with these utility modules:

  • Chunk Text
  • Chunk Array
  • Chunk Words
  • Multiple Find & Replace
  • Collection to Array/String List
  • Execute JavaScript
  • Estimate Tokens
  • Calculate Difference Between Two Dates
  • List Upcoming Dates of Day of Week
    and more!

Hope this helps you move forward. If you have any more questions, just ask.

@samliew