I am creating a url in my asp.net mvc application, that will receive sms from clients and process the sms and send response back to the user. My URL looks somewhat like this
http://mydomain.com/mycont/processsms/003365478555?body=mysms
The URL will send back the response like "Success", "Error" etc
Now my question is should a go for apicontroller
or normal controller. or there is other better option available to do that