We have a flow that is configured to be an API. When calling it from JavaScript code, we pass to it a "filename" parameter using the querystring, like this:
<flowAPIURL> + "&filename=" + strFileName;
We recently got notification from Microsoft that the flow's trigger URL has been updated and we should use the new URL.
Using the old URL, the raw output of the flow trigger step included the “queries” section in the JSON with the "filename" node in it and we grabbed it from there:
Using the new URL, the raw output of the flow trigger step has no “queries” node:
How are we now supposed to pass parameters to API flows?
Thanks