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