I have one AZURE Apim which is mapped to App service where I have deployed web API's(separate API for each customer). I have added an API URL prefix(Customer Name) in APIM endpoint so that I can define endpoints based on the customer as below. APIM URL: http://demoapim.com apim URL prefix : customer name(cust1, cust2) so now URL would be
http://demoapim.com/cust1 http://demoapim.com/cust2
web API endpoint: http://cutomerapi.com/details
When I am trying to access http://demoapim.com/cust2/details or http://demoapim.com/cust1/details, it gives 404.but http://demoapim.com/details works. Please help me what I am missing here.