Created
September 9, 2010 20:20
-
-
Save mikekelly/572481 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resource href="/orders"> | |
<link rel="next" href="/orders?page=2" /> | |
<link rel="search" href="/orders?id={order_id}" /> | |
<resource rel="order" href="/orders/123"> | |
<link rel="customer" href="/customer/bob" title="Bob Jones <[email protected]>" /> | |
<resource rel="basket" href="/orders/123/basket"> | |
<item> | |
<sku>ABC123</sku> | |
<quantity>2</quantity> | |
<price>9.50</price> | |
</item> | |
<item> | |
<sku>GFZ111</sku> | |
<quantity>1</quantity> | |
<price>11.00</price> | |
</item> | |
</resource> | |
<total>30.00</total> | |
<currency>USD</currency> | |
<status>shipped</status> | |
<placed>2011-01-16</placed> | |
</resource> | |
<resource rel="order" href="/orders/124"> | |
<link rel="customer" href="/customer/jen" title="Jen Harris <[email protected]>" /> | |
<resource rel="basket" href="/orders/124/basket"> | |
<item> | |
<sku>KLM222</sku> | |
<quantity>1</quantity> | |
<price>9.00</price> | |
</item> | |
<item> | |
<sku>HHI50</sku> | |
<quantity>1</quantity> | |
<price>11.00</price> | |
</item> | |
</resource> | |
<total>20.00</total> | |
<currency>USD</currency> | |
<status>processing</status> | |
<placed>2011-01-16</placed> | |
</resource> | |
</resource> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment