Not sure if my title makes any sense, here is what I am trying to accomplish:
I'm doing an HTTP GET call from Solarwinds Service Desk, of all current incidents. Within the response is an array, and within that there is "id" and "number". I can only send the "number" value from SolarWinds, so I want to build a flow that says if "number" = xxxx, then return me the "id" of that array element value.
So if I had:
[
"id": "123456",
"number": "6789"
]
I want to say that if "number" is 6789, return me the "id" of 123456.
The HTTP call gives me 30+ values to sort through, so I would need to search each value in the array for whatever one matches 6789 and only give me the id of that value.