Order Examples
Get shipping address for order with ID 145
Example
GET http://localhost:1260/odata/v1/Orders(145)/ShippingAddress
This request is called OData navigation. Use BillingAddress
 if you want the billing address of an order to be returned.
Get order by its GUID
Example
GET http://localhost:1260/odata/v1/Orders?$top=1&$filter=OrderGuid eq (Guid'4cf19e7d-cf40-44e4-aa7a-6605766158d6')
Get order with ID 145 as PDF
Example
POST http://localhost:1260/odata/v1/Orders(145)/Pdf