I have come up with the issue that i want all my azure function apps to have the same domain and have the same clean structure, which would allow me to produce and nice clean api.
something like
api.mydomain.com/v1/en-gb/tenent/222/product/create
however due to the way azure apim (and all there front end services) insert a suffix which has to be unique for all the function app between the domain and the route, and there is no way to remove this, and there is no way to change it to a route which would be unque and there is no was to re-write the url because there is no re-write policies on frontend urls.
so i am left with
api.mydomain.com/somestringofcharactershere/v1/en-gb/tenent/222/product/create
does AWS have the same problem (or google)? any suggestions would be appriciated