I understand that in MVC pattern and in REST services it is common to use URIs like /items/{id}
but what is bad thing about using query parameters in the URI?
GET /items/{id}
vs GET /items?id={id}
Further, lets say an entity has 'referenceId' field that points to some related (say parent) entity, and I need to create REST service to get all items for parent entity, which way is better:
GET(POST) /items/parent/{parentId}
or
GET(POST) /items?parent={parentId}
Will be grateful for insights that would help to resolve my subjective issues on constructing URLs for REST services.
It seems to me there are no rules to follow.
items/{id}
- this convention is suitable for GET item by given id. If user doesn't provide id then it returns 404 status code.items/id={id}&name={name}
- this type of convention is suitable for search multiple items by given criteria. If no items are found, it is not a 404 situation, you simply say "I successfully found nothing matching your search criteria"Of course, REST principles don't care about aesthetic details on URLs. It just imposes that every resource should be uniquely addressable.
Furthermore, using the query parameters to uniquely address something "kind of" violates the semantics of a "parameter", doesn't it? A parameter should be something optional, something additional and parameterized. Something like a detailed search on a collection of items, for example.
What you wrote may make sense in some cases. It depends.
In your example, is the item really a resource? If not, you could just do
GET(POST) /parents/{parentId}
.If
parent
is, say, a boolean, and you want to search the items that have parent equals to true, then using the parameters makes sense. But since you're explicitly saying that you want a parent with a specific id, I assume that parent is a resource itself and I would uniquely address that resource using your option 1.I hope I made myself clear.
I would use the following schemes.
This uniquely addresses a resource of items with id
id
. We are not using parameters as a parameter to uniquely address this resource (as is the case with the other option). Just as miguelcobain suggests.Here
id
is an id to uniquely address a resource of parent and from those we collect/retrieve the items it references. From what you have said in the question it seems that parent references multiple items, like a container or collection.The convention I use for this is to narrow down the scope going from left to right. Therefore in case items could be
active
orinactive
. Thusly items have a property or attribute to beactive
orinactive
. Narrowing down on this I get the following scheme:For your first question:
/items/{id}
should retrieve a single resource with the specified id or404
if it doesn't exist./items/?id={id}
should retrieve an array (even if only one in the array) because you are querying the collection.For your second question:
I agree with @miguelcobain's assessment - if the item is a specific resource/entity, just use the proper resource path to retrieve it.
To make this easier on the consumer, create a link header with
rel="parent"
and/or include the uri in the child resource. For an example of link headers, see GitHub's pagination api.