I'm trying to make several odata lookup get requests.
For example if I run the flow the first api call fails becuase the two values are not present in the url query parameters. But if i run the test on the individual api call itself the url query parameters are there.
The url segment in question from an API Flow test:
accounts?$filter=&$select="
and the url segment in question from a test of just the flow part in the API Flow.
accounts?$filter=customerid%20eq%20'2292259'%20and%20accountnumber%20eq%20'2151555'&$select=accountid"
If I go back and hard code the values in it works in both cases. But the whole purpose of trying to use one of these api flows was to make it dynamic.
Just a little stumped. Also tried recreating the flow with just the first api call and the same behaviour.
These api calls work in Data flows and Workflows. So I'm thinking its related to some issue with the API flows.
Has anyone encountered this before?