Unfortunately, I can’t get any further with a problem here. It’s about processing an invoice request from a customer where there are two invoice numbers with two shipping dates for one order number.
I get both numbers in one variable like here:
Json_query:
“invoice_numbers”: “TAT441919, TAT443211”,
“shipping_dates”: “2025-05-14, 2025-05-26”,
I have two values in a variable, which I separate with this variable, and everything works:
-
Split InvoiceArray
- 1
TAT441919
- 2
TAT443211
-
Split DatesArray
- 1
2025-05-14
- 2
2025-05-26
But now to the actual problem, both numbers and data are displayed here per bundle.
For the first invoice, I can process everything cleanly up to the module where the invoice is downloaded:
This is what the first download module looks like, which also works:
But now I want to process the invoice number and date from the second bundle, as here:
But the output is empty:
I now need a way or variable to get only the value from the second bundle from both aggregators: