Product Data Type

A base product in the catalog (e.g. a blank t-shirt or hoodie). Products define the available colors, sizes, views, and print areas used when creating designs and orders.

Available Since
1.3.0
Subtypes
ProductExpanded
Properties
Name Type Description
id number Unique numeric identifier for the Product.
name string The nonlocalized name of the Product.
amountMultiply number
artNr string Some additional identification.
model string Some additional identification.
hsCode string HsCode.
active boolean Wheter the product is enabled.
orderIndex number Sorting data.
Used in
Product (JSON)
{
  "product" : {
    "id" : 12345,
    "name" : "Premium T-shirt",
    "amountMultiply" : 12345,
    "artNr" : "180.42",
    "model" : "Exact 190",
    "hsCode" : "ABC123456789",
    "active" : true,
    "orderIndex" : 1
  }
}
Product Data Type

A base product in the catalog (e.g. a blank t-shirt or hoodie). Products define the available colors, sizes, views, and print areas used when creating designs and orders.

Available Since
1.3.0
Subtypes
ProductExpanded
Properties
Name Type Description
active boolean Wheter the product is enabled.
amountMultiply int  
artNr string Some additional identification.
hsCode string HsCode.
id int Unique numeric identifier for the Product.
model string Some additional identification.
name string The nonlocalized name of the Product.
orderIndex int Sorting data.
Used in
Product (XML)
<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>