v1

latestOpenAPI 3.1.02026-07-2419782400.4 KB
Orders

Retrieve specific order by id

get/api/store/order/{id}/products

Path parameters

idstring required
Example:00000000-0000-0000-0000000000000000

Response

Specific order products

idstring
orderIdstring
referenceIdstring
namestring
itemPricenumber
quantityinteger

Example response

[
  {
    "id": "00000000-0000-0000-0000-000000000000",
    "orderId": "00000000-0000-0000-0000-000000000000",
    "product": {
      "id": "00000000-0000-0000-0000-000000000000",
      "name": "Train the trainer product",
      "description": "This is such a nice product!",
      "product_number": "999999999",
      "size_height": 1,
      "size_width": 1,
      "size_depth": 1,
      "weight": 1,
      "min_quantity": 1,
      "max_quantity": 10,
      "default_quantity": 1,
      "datecreated": "2016-08-10T12:14:16+00:00",
      "isActive": true,
      "product_type": "print",
      "product_package": "unit",
      "sku": "1",
      "step": 1,
      "display_length_unit": "cm"
    },
    "referenceId": "999999999",
    "name": "Train the trainer product",
    "itemPrice": 0.2333,
    "quantity": 3
  }
]