I am creating some APIs using apiary, so the language used is JSON.
Let's assume I need to represent this resource:
{
"id" : 9,
"name" : "test",
"customer_id" : 12,
"user_id" : 1,
"store_id" : 3,
"notes" : "Lorem ipsum example long text"
}
Is it correct to refer to other resources by their IDs (12
, 1
, 3
), or I should specify the URL of these resources (i.e. /customers/12
, /users/1
, /stores/3
)?
I am not using HATEOAS and I am a bit confused.
The base URL is the internet host name for the REST API. The resource path is the address to the API resource. Query parameters are name/value pairs passed to the REST API after a ? in the endpoint URL. Query parameters pass inputs to a REST API and are often used to filter, sort, or specify the output format.
This Account resource and every other JSON resource will always have an href property, which is the fully qualified canonical URL where that resource resides. Whenever you see an href property, you know you can access that resource by executing a GET request to the resource's URL.
DO include absolute entity URIs in your responses (such as /customers/12
or even http://www.example.com/customers/12
).
DO NOT include just an entity's ID (such as 12
) in a response, because that way you're forcing clients to put together resource URIs themselves. In order to do that, they would need to have prior knowledge of what URIs there are, and you're losing control over the URI space on the server side.
(Having the client put together an URI is OK if the server instructs the client how, e.g. by sending a URI template along with the ID; but if it did that, it could just as well send the resulting URI.)
- "A REST API should be entered with no prior knowledge beyond the initial URI (bookmark)."
- "A REST API must not define fixed resource names or hierarchies (an obvious coupling of client and server). Servers must have the freedom to control their own namespace. Instead, allow servers to instruct clients on how to construct appropriate URIs[.]"
HAL, which specifies a standard way to put links to related resources into your responses.
JSON API — "a specification for building APIs in JSON"
The above advice is not just for IDs of other resources (i.e. "foreign keys" such as your customer_id
); you'd also turn the resource's own id
into a so-called "self link"; see the SO question "What is the importance of the self link in hypermedia APIs?".
Example:
Your original resource could be re-designed as follows:
{
"type": "foobar",
"id": "9",
"links": {
"self": "//example.com/foobars/9"
},
"cashier": {
"type": "user",
"id": "1",
"links": {
"self": "//example.com/users/1"
}
},
"customer": {
"type": "customer",
"id": "12",
"links": {
"self": "//example.com/customers/12"
}
},
"name" : "test",
"notes" : "Lorem ipsum example long text",
"store": {
"type": "store",
"id": "3",
"links": {
"self": "//example.com/stores/3"
}
}
}
A few things to note:
type
, id
, links
.type
might seem somewhat redudant; often, you implicitly know what kind of object to expect. This property can help in validation, and also gives you the opportunity to distinguish between object type and role (e.g. cashier
is-a user
in the above example).I have had a look of other popular APIs (Facebook, Spotify) and I believe the following one is the best way to do it:
{
"id" : 9,
"name" : "test",
"customer" : {
"id": 12,
"href": "/customers/12"
},
"user" : {
"id": 1,
"href": "/users/1"
},
"store" : {
"id": 3,
"href": "/stores/3"
},
"notes" : "Lorem ipsum example long text"
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With