Hello,
I'm very new to PowerAutomate so unsure of all it's capabilities. I'm curious if it's possible to type out Dynamic Content and use in a Apply to Each Action?
example: body('Parse_JSON')?['result']?['success']?['XXX-XXX']?['parameters']
Reason I ask is because I'm reading a JSON from an HTTP request. The JSON path unfortunately includes a variable that we push to the request but that means the Dynamic Content changes every request as well (ex: body('Parse_JSON')?['result']?['success']?['XXX-XXX']?['parameters']).
Seems like Power Automate doesn't change the path after every request; for example, if the first request uses '123-456' the Dynamic Content will include that '123-456' but if the next request we use '789-123' it doesn't work unless we go into the flow and remove the Dynamic Content and then re-add.
I tried simply removing the Dynamic Content and then typing in the name (body('Parse_JSON')?['result']?['success']?['XXX-XXX']?['parameters']) in the Expression but it errored out with the following,
"The template validation failed: 'The repetition action(s) 'Apply_to_each' referenced by 'inputs' in action 'Select' are not defined in the template.'."

Is this a possible feature inside Power Automate? Thank you!!