Advertisement
Guest User

Untitled

a guest
Mar 28th, 2016
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rexx 0.39 KB | None | 0 0
  1.  GET /orders/523 HTTP/1.1
  2.    Host: example.org
  3.    Accept: application/hal+json
  4.  
  5.    HTTP/1.1 200 OK
  6.    Content-Type: application/hal+json
  7.  
  8.    {
  9.      "_links": {
  10.        "self": { "href": "/orders/523" },
  11.        "warehouse": { "href": "/warehouse/56" },
  12.        "invoice": { "href": "/invoices/873" }
  13.      },
  14.      "currency": "USD",
  15.      "status": "shipped",
  16.      "total": 10.20
  17.    }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement