CreatorSE.DesignedTemplateProduct Data Type

A template product included in a deferred order with its quantity. References a pre-configured template product by id and specifies the order item amount.

Properties
Name Type Description
templateProductId number The identifier for the template product.
amount number Order item amount.
assignedSize CreatorSE.ProductAssignedSize Order item size.
assignedColor CreatorSE.ProductAssignedColor Order item color.
templateProductSku string Template SKU.
CreatorSE.DesignedTemplateProduct (JSON)
{
  "creatorse_designedTemplateProduct" : {
    "templateProductId" : 12345,
    "amount" : 12345,
    "assignedSize" : {
      "id" : 12345,
      "size" : {
        "id" : 12345,
        "name" : "XL"
      }
    },
    "assignedColor" : {
      "id" : 12345,
      "color" : {
        "id" : 12345
      }
    },
    "templateProductSku" : "..."
  }
}
CreatorSE.DesignedTemplateProduct Data Type

A template product included in a deferred order with its quantity. References a pre-configured template product by id and specifies the order item amount.

Properties
Name Type Description
amount int Order item amount.
assignedColor CreatorSE.ProductAssignedColor Order item color.
assignedSize CreatorSE.ProductAssignedSize Order item size.
templateProductId int The identifier for the template product.
templateProductSku string Template SKU.
CreatorSE.DesignedTemplateProduct (XML)
<creatorse_designedTemplateProduct>
  <templateProductId>...</templateProductId>
  <amount>...</amount>
  <assignedSize>
    <id>...</id>
    <size>
      <id>...</id>
      <name>XL</name>
    </size>
  </assignedSize>
  <assignedColor>
    <id>...</id>
    <color>
      <id>...</id>
    </color>
  </assignedColor>
  <templateProductSku>...</templateProductSku>
</creatorse_designedTemplateProduct>