Hi @LTSIG
Here is the sample flow.
I have stored input object in compose action:
{
"ID": "9154",
"Order Number": [
"1769000",
"1771018",
"1769115",
"1755243",
"1757047",
"1761184",
"1764253",
"1771225",
"383933",
"1771165",
"1769848",
"1771228",
"1770271",
"1771185",
"1771313",
"1771124",
"1769825",
"1770209"
],
"RouteID": "17810"
}
Add Select action and enter an expression in 'From' parameter. Expression needs to be added in the expression box as shown below:

outputs('Compose')?['Order Number']
Enter the Map/key as plain text & set expression for each key item:
| Key |
Value |
| RouteID |
outputs('Compose')?['RouteID'] |
| ID |
outputs('Compose')?['ID']
|
| Order |
item() |
The output of select action will give you an array than you iterate and pass each item to web service.
Output:
If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.