I am having difficulty getting the DELETE Method on my Controller to fire when submitting the request over ASP.NET Web API. It returns a 404 but I cannot figure out why. The
You need to implement Delete method in Controller:
// DELETE /api/values/5 public void Delete(int id) {}