Here is a simplified ASP.NET web API
public string Get() {
return $"Received value: 1,2 in string Get()";
}
public string Get([FromUri] int id) {
return $"Received value: {id} in Get(int id)";
}
How to match them in the definition of the WSO2 API? I tried the following, but it does not seem to work.

I get the following error
{"fault":{"code":900906,"message":"No matching resource found in the API for the given request","description":"Access failure for API: /api/1.0, version: 1.0 status: (900906) - No matching resource found in the API for the given request. Check the API documentation and add a proper REST resource path to the invocation URL"}}
I would like url to call something like this
http:
http:
Thanks in advance for your help!
source
share