I am writing an application that is accepting POST data from a third party service.
When this data is POSTed I must return a 200 HTTP Status Code.
How can I
200 is just the normal HTTP header for a successful request. If that's all you need, just have the controller return new EmptyResult();
return new EmptyResult();