Is there a way to pass the query param coming via the APIM request as path param to the backend service call? For example:
For the below API call
base_url/a/{pathParam1}?query=Qvalue
I want to transform the URL to:
base_url/a/Qvalue/{pathparam1}
Also I will be using the URL re-write policy to change the base_url and add newer query params.