Rest API - HATEOAS and Linking
Given this HAL JSON snippet, what is the URL to access the customer's orders?
{
"_links": {
"self": { "href": "/customers/42" },
"orders": { "href": "/customers/42/orders" }
}
}