Tagged Questions

0
votes
3answers
17 views

What is the difference between category/category_id/item_id and category?category_id={}&item_id={} in REST?

I just began looking at REST and was wondering what the basic difference between the two representations was. The first one looks pretty nice to me and the second one has to pass s …
1
vote
2answers
43 views

Three Step Buyonline The RESTful way

We are re-developing our buyonline functionality and we are doing it the RESTful way. The process is a three step one and the customer is asked to enter data at each step. Let's …
1
vote
6answers
81 views

RESTful POSTS, do you POST objects to the singular or plural Uri?

Which one of these Uris would be more 'fit' for receiving POSTS (adding product(s))? Are there any best practices available or is it just personal preference? /product/ (singu …
0
votes
3answers
44 views

How to “lazy load” in a RESTful manner?

Given this service to get information about a hotel: > GET /hotel/{id} < HTTP/1.1 200 OK < <hotel> < <a>aaa</a> < <b>aaa</b> > …
0
votes
3answers
77 views

How to obtain REST resource with different finder “methods”?

Let's say you had a /companies resource that allowed clients to lookup public companies and you wanted clients to be able to lookup companies by Ticker, Location, and Location and …
2
votes
4answers
111 views

Restful URLs with data in query string or request body?

What's the rule of thumb for passing data in a REST URL in the query string vs. the body of a request? Ie: You're creating a service to add hockey players. You could go with: PU …
2
votes
9answers
232 views

How to create REST URL’s without verbs?

I'm struggling to determine how to design restful URLs. I'm all for the restful approach of using URLs with nouns and not verbs don't understand how to do this. We are creating a …