Should a RESTful GET response return a resource’s ID?

This is a matter of opinion, which is not the kind of Question that Stackoverflow loves to see. in any case, I will offer mine.

You are returning the representation of the state of an object or resource. The ID is part of that representation, and therefore ought to be included in the JSON packet. It is a property of the resource. Whether the caller knows the ID or not is not particularly germane to the discussion. CAMP #1 is on shaky ground.

The point you raise about collections is very relevant. Does it make sense to use one representation for the retrieve-1 operation, and another representation for the retrieve-N operation? I think not.

However, the issue you are confronting is more general – what data should be included in the representation that is transferred to clients, and under what circumstances? In some cases the caller simply does not care about a significant subset of the properties. Especially in scenarios where a large set of objects gets retrieved – where the cost to transmit the data is larger in comparison to the base communication cost – you’d like to optimize what is shipped back.

All sufficiently mature REST protocols have an ability to shape the returned data.

For examples, see

  • the Facebook Graph API, http://developers.facebook.com/docs/reference/api/
  • the StackExchange API v2.0 – there is a “filter” object you can pass to precisely shape what gets returned.
  • the CouchDb API – has a map function for every view, which determines what data gets returned. It also has a blanket query parameter, include_docs, which directs the server to include full objects or just metadata. (In some cases you might want only the count of the data, not the actual data.)

Facebook allows you to explicitly specify the fields you want.

enter image description here

The stackexchange API is interesting. They’ve defined an entirely new type of object to support the shaping. You can use the API to define a “filter” and save it on the server side. Then in your query you pass a filter param with the ID of the filter, and the returned object representations include all the attributes specified in the filter. With no filter you get a “default” subset of fields. To get “all fields” you need to define an all-inclusive filter.

you can see this in action at https://api.stackexchange.com/docs/answers

…and specifically see the filter specification dialog.

enter image description here


There is no single correct way to do things. You need to balance the complexity of the “shaping” feature you support with the cost to develop and the needs of the apps that will use the API.

Leave a Comment

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)