Linked Questions

302 votes
9 answers
484k views

Sorry if this is duplicate,I would think it would be but couldn't find anything. I have a flex application that I am posting data back to a PHP/MySQL server via Internet Explorer. I haven't run into ...
invertedSpear's user avatar
200 votes
7 answers
187k views

What is the REST-ful way of deleting multiple items? My use case is that I have a Backbone Collection wherein I need to be able to delete multiple items at once. The options seem to be: Send a DELETE ...
Donald T's user avatar
  • 10.7k
36 votes
5 answers
34k views

In my API server I have this route defined: POST /categories To create one category you do: POST /categories {"name": "Books"} I thought that if you want to create multiple categories, then you ...
wingy's user avatar
  • 569
10 votes
3 answers
4k views

I have a Backbone collection with a load of models. Whenever a specific attribute is set on a model and it is saved, a load of calculations fire off and the UI rerenders. But, I want to be able to ...
hacklikecrack's user avatar
3 votes
2 answers
4k views

I have a REST server and a client application running on a mobile device. The client has some data and would like to get updates to the data from the server. How do I do this in a RESTful way in a ...
Ralph's user avatar
  • 32.4k
0 votes
2 answers
4k views

I don't know but this seems ambiguous to me. I'm trying to make a DELETE request, applied on multiple objects, referenced with their IDs (the ones in the array). This is my controller : [...
Sahar Ch.'s user avatar
  • 499
2 votes
1 answer
3k views

For a PHP application I am integrating a REST service capable of receiving multiple nested HTTP requests at once. This is identical to the google calendar API: https://developers.google.com/google-...
KrekkieD's user avatar
  • 1,027
0 votes
1 answer
2k views

i'd like to fetch a bunch of models via a collection by a list of model IDs. My problem is that i have to fetch dozens of models at once. I don't want to put dozens over douzens of IDs into the URL ...
jaydoubleyou's user avatar
2 votes
2 answers
953 views

I'm currently creating an application (let's say, notes app, for instance - webapplication + mobile app). I wanted to use RESTful API here, so I read a lot about this topic and I found out there's a ...
m4tx's user avatar
  • 4,576
1 vote
0 answers
1k views

The Restangular.remove() function sends the request object as query params(EXAMPLE: /users?ids=1&ids=2&ids=3) instead of send these ids as a body params(JSON format) Example Code: $scope....
Sasi's user avatar
  • 188
0 votes
4 answers
576 views

countSubcategories() function returns [object Promise] where it should return row counts of mapped subcategories. This code is in vue.js & Laravel, Any suggestions on this? <div v-for="(cat,...
Sam Web Studio's user avatar
1 vote
0 answers
431 views

I'm a noob so please I hope you can help me and understand that maybe my question is dummy or not-well oriented. In Visual Studio, I have a Web Api consumed from a MVC App (which applies CRUD methods)...
DannSaHa's user avatar
  • 247
3 votes
1 answer
157 views

We're trying to re-engineer our SOAP API to a RESTful one (using ASP.NET Web Api). I know the question of how to replace RPC-style calls with REST comes up a lot but I still haven't found anything ...
David Scott's user avatar