I\'m using Angular\'s $http service to make web api requests. When I use the GET method, the two param values are added to the query string:
$http
//
If your api url is "api/test/heroId/power",
var data = 123+'/Death ray'
$http.put("api/test"+data);