Hi, this may sound complicated, but let me try my best to explain it in an easy way.
In Power Automate, I have used the HTTP action. I passed input JSON in the body, and I received a response like this:
{
"Measurement_Values": [
6.35,
7.14,
7.92,
8.74,
9.52,
10.31,
11.13,
11.91,
12.7,
14.27,
15.88,
17.48,
19.05,
20.62,
22.22,
23.83,
25.4,
26.97,
28.58,
30.18,
31.75
]
}
How can I iterate through each value and assign it to a variable called 'T1'? .
During the first loop, T1 should be 6.35, in the second loop, T1 should be 7.14, and so on.
Note: The value of T1 should be passed in a Compose output below (please see the image below)
So the above compose output [ after assigning T1 value from the first HTTP response] then i will pass as JSON input using another HTTP action and it will get response like this

So, the "adequacy_check" ("Ok" or "Not Ok") depends entirely on the T1 variable value. If the adequacy check is "Not Ok," then use the next value of T1 by iterating through the values one by one until the "adequacy_check" is "Ok." Once the adequacy check is "Ok," stop iterating.
How to do this? Can anyone help me?