Rest API - HATEOAS and Linking
Given this JSON response snippet:
What URL should a client use to cancel order 42?
{
"_links": {
"self": { "href": "/orders/42" },
"cancel": { "href": "/orders/42/cancel" }
}
}What URL should a client use to cancel order 42?
