I am using the .Net MVC4 Web API to (hopefully) implement a RESTful api. I need to pass in a few parameters to the system and have it perform some action, then return a lis
Now you can do this by simply using
public string Get(int id, int abc) { return "value: " + id + " " + abc; }
this will return: "value: 5 10"
if you call it with https://yourdomain/api/yourcontroller?id=5&abc=10