Use Azure Api Management as a passthrough
I would like to create a policy in Azure API Management that forwards all calls that start with the path "proxy/search" to another url. However, i don't want to have to import/create endpoints in APIM for every possibility since this makes it a maintenance nightmare. For example.. GET https://whatever.azure-api.net/proxy/search?q=dogs GET https://whatever.azure-api.net/proxy/search/categories?q=dogs GET https://whatever.azure-api.net/proxy/search/categories/x/y/z/etc....?q=blah to the corresponding... GET https://mysearchapi.com/?q=dogs GET https://mysearchapi.com/categories?q=dogs GET https:/