Design Data Type

A design created in the Creator — binds a product to a price and an optional customization.

Returned as part of an ordered product to identify which product was ordered and at what price.

Available Since
1.3.0
Properties
Name Type Description
id number Unique identifier of the design.
product Product The product this design is based on.
price number The price of the design at the time the order was placed.
Design (JSON)
{
  "design" : {
    "id" : 12345,
    "product" : {
      "id" : 12345,
      "name" : "Premium T-shirt",
      "amountMultiply" : 12345,
      "artNr" : "180.42",
      "model" : "Exact 190",
      "hsCode" : "ABC123456789",
      "active" : true,
      "orderIndex" : 1
    },
    "price" : 12345.0
  }
}
Design Data Type

A design created in the Creator — binds a product to a price and an optional customization.

Returned as part of an ordered product to identify which product was ordered and at what price.

Available Since
1.3.0
Properties
Name Type Description
id int Unique identifier of the design.
price decimal The price of the design at the time the order was placed.
product Product The product this design is based on.
Design (XML)
<design>
  <id>...</id>
  <product>
    <id>...</id>
    <name>Premium T-shirt</name>
    <amountMultiply>...</amountMultiply>
    <artNr>180.42</artNr>
    <model>Exact 190</model>
    <hsCode>ABC123456789</hsCode>
    <active>...</active>
    <orderIndex>1</orderIndex>
  </product>
  <price>...</price>
</design>