I have an API instance in AZURE where the configurations are as below.
- API endpoint : corol.abpparking.domain.com
- API suffix : myaboutpage
- Backend Webservice URL : http://10.20.10.2:8080/api/v1/
What works If i call the webservice URL directly as below for the operation GET to /about, i get response code 200
http://10.20.10.2:8080/api/v1/about
Response: 200
What does not work If i perform the same operation via APIM, i get a 404 resource not found.
http://corol.abpparking.domain.com/myaboutpage/about
Response: 404 Resource not found
I could not figure our what could be the reason. Note that i do not have any basepath in the Swagger definition.