I'm trying to send multiple ids along with other parameters using my custom customGET
method. However, the implementation seems to be incorrect:
var selection = [2,10,20];
// Issue: GET /api/user/export/file?param1=test&ids=2,10,20
Restangular.all('user').customGET('export/file',{param1:'test',ids:selection}).then(function(response) {
/* */
})
Your help is appreciated.