Hello,
What is the best way to make an HTTP request that includes both JSON body data and all binary files from the previous step?
I can handle a single binary with proper mapping, but the challenge is that the previous step may return anywhere from 1 to 10 binary files, and I need to include all of them in the request.
What’s the recommended approach for this scenario?
While there are no answers, sharing a workaround I found, if someone has the same use case. Basically compressing all binaries to a ZIP and POST’ing it with single binary file makes the magic.
Now i got a point. What i was needed its node is this expression {{ Object.keys($binary).join(', ') }}, which list binaries like ‘file_0, file_1’. So basically Compress node works in this case