Hi!
Im wrapping my head around how to achieve this so hopefully any experts here can help. Im new to this to this might be an easy way to to this.
The output from my HTTP request returns an array with one or more collections. In these collections there are several fields, but I only need three of these fields to be passed into the body as an array in my next http request. The new HTTP request also need to use other names on these fields.
Any idea how to achieve this?
Can you share picture of what you have created so far
Thank you for your reply.
This is the output from my first HTTP Get request:

My goal was to retrieve some of the fields from this collection and also rename them. I found a solution to handle this, but not sure if it is the most optimal way of doing it. To achieve my goal I added an iterator and aggregate to json:
I needed to get the information from the first HTTP request to the last. And since the first HTTP request is already returning an array , I would guess there was an easier was to pass the array to the last HTTP request, with only some fields and also renaming them.
If you know a better way, please let me know, or else this works ok.