Creating a Web API to work with XML requests

For a project on the side I’m creating a Web API which has to parse XML requests in a POST. The first method I’ve written looks like this: [HttpPost] public HttpResponseMessage IndexPost(RequestModel requestMessage) { return new HttpResponseMessage(HttpStatusCode.Accepted) { Content = new StringContent("This is the POST API response from BusinessPartner!") }; } To test the new API I’m using the Postman Chrome plugin. With this plugin you are able to send requests to an endpoint and see what the response is. Read more →