Usage
Retrieve an order by the ID
Basic URI
/DesktopModules/RazorCart/Services/v1/Orders/{id}
Parameters
int id               The order Id
AUTH
Bearer JWT
Required Scope(s)
orders
 
Request
GET https://domain.com/DesktopModules/RazorCart/Services/v1/Orders/115 HTTP/1.1
Authorization: Bearer {access_token}
Content-Type: application/json
 
Response
{
  "OrderID" : 115,
  "CustomerID" : 2,
  "OrderDate" : "2017-01-30T19:36:14.533",
  "PayHistID" : 0,
  "ShippingTotal" : 0.0000,
  "TaxTotal" : 0.3990,
  "HandlingCharge" : 0.0000,
  "ShipFirstName" : "Jerry",
  "ShipLastName" : "Yeager",
  "ShipAddress1" : "28 Karen Lane",
  "ShipAddress2" : "",
  "ShipCity" : "Georgetown",
  "ShipState" : "KY",
  "ShipZipcode" : "40324",
  "ShipCountry" : "US",
  "Status" : "Open",
  "ShipMethod" : "",
  "AffiliateId" : null,
  "CouponId" : 0,
  "Discount" : 0.0000,
  "MemberDiscount" : 0.0000,
  "TrackingNumber" : null,
  "PortalID" : 0,
  "Surcharge" : 0.0000,
  "SpecialInstructions" : "",
  "ShipDate" : "2017-01-30T00:00:00",
  "ShipCarrier" : USPS,
  "ResidentialStatus" : null,
  "AuctionID" : 0,
  "SubTotal" : 3.9900,
  "GrandTotal" : 4.3890,
  "RecalcTax" : false,
  "RecalcShipping" : false,
  "StoreID" : 1,
  "PayTotal" : 0.0,
  "CouponCode" : null
}

Add Feedback