Suppose I need to make a DELETE
request to delete multiple products from the resource /products
.
The complete request should be sent to this URI:
/products/ids=1&ids=2&ids=3
What is the method to send a request like this using Restangular?
The current issue is that when using customDELETE
, query string parameters are passed as an object, which restricts defining the same parameter more than once...