I am intending to create a DELETE end point for my .net Core WEB API solution. I will be receiving a json collection of items to be deleted. This will be received from a mobile device. In the DELETE end point how can I capture the collection of items passed. In a similar article I read that DELETE does not accept a message body.
I it possible to capture the json list sent from the mobile device, in the DELETE end point?