We all know the \'standard\' way of deleting a single item via REST is to send a single DELETE request to a URI example.com/Items/666
. Grand, let\'s move on to dele
IMO:
HTTP DELETE on existing collection to delete all of its member seems fine. Creating the collection just to delete all of the member sounds odd. As you yourself suggest, just pass IDs of the to be deleted items using JSON (or any other payload format). I think that the server should try to make multiple deletes an internal transaction though.