I have the following:
[HttpDelete]
public HttpResponseMessage DeleteFolder(int[] ids)
{
and I'm trying to use this:
DELETE http://localhost:24144/api/folder/1483;
DELETE http://localhost:24144/api/folder/[1483]
but these are coming up as null within the delete method - how do I send the data without putting it in the body (since this is a DELETE request)?
My routing has this:
routes.MapHttpRoute(
name: "Folder",
routeTemplate: "api/folder/{id}",
defaults: new { controller = "Folder", id = RouteParameter.Optional }
);