EZCart Docs
ApiV1StoreCustomersMeOrdersOrderid

Get a single order by ID

Get a single order by ID.

GET
/v1/store/customers/me/orders/{orderId}

Path Parameters

orderId*string

Response Body

application/json

curl -X GET "https://api-pub.ezcart.io/v1/store/customers/me/orders/string"
{
  "id": "string",
  "orderNumber": "string",
  "status": "string",
  "paymentStatus": {},
  "paymentMethod": {},
  "subtotal": 0,
  "discountTotal": 0,
  "shippingFee": 0,
  "codFee": 0,
  "totalPrice": 0,
  "amountPaid": 0,
  "trackingNumber": {},
  "customerNotes": {},
  "items": [
    {
      "id": "string",
      "quantity": 0,
      "price": 0,
      "productVariant": {}
    }
  ],
  "createdAt": "2019-08-24T14:15:22Z"
}