OrderSplitted Data Type

Result of splitting a production order into sub-orders, one per manufacturer or print facility. Contains references to the original order and the resulting sub-orders.

Available Since
1.4.136
Properties
Name Type Description
orderId number Identifier of the original production order that was split.
uniqueId string External unique identifier of the original order (e.g. from the e-commerce platform).
childOrderIds array of number Identifiers of the sub-orders created from the split.
customReferences array of string Custom reference strings carried over from the original order.
childOrders array of OrderSplitted Full details of the sub-orders created from the split.
OrderSplitted (JSON)
{
  "productionOrderSplitted" : {
    "orderId" : 12345,
    "uniqueId" : "...",
    "childOrderIds" : [ 12345, 12345 ],
    "customReferences" : [ "...", "..." ],
    "childOrders" : {
      "productionOrderSplitted" : [ {
        "orderId" : 12345,
        "uniqueId" : "...",
        "childOrderIds" : [ 12345, 12345 ],
        "customReferences" : [ "...", "..." ],
        "childOrders" : {
          "productionOrderSplitted" : [ { }, { } ]
        }
      }, {
        "orderId" : 12345,
        "uniqueId" : "...",
        "childOrderIds" : [ 12345, 12345 ],
        "customReferences" : [ "...", "..." ],
        "childOrders" : {
          "productionOrderSplitted" : [ { }, { } ]
        }
      } ]
    }
  }
}
OrderSplitted Data Type

Result of splitting a production order into sub-orders, one per manufacturer or print facility. Contains references to the original order and the resulting sub-orders.

Available Since
1.4.136
Properties
Name Type Description
childOrderIds list of int Identifiers of the sub-orders created from the split.
childOrders list of OrderSplitted Full details of the sub-orders created from the split.
customReferences list of string Custom reference strings carried over from the original order.
orderId int Identifier of the original production order that was split.
uniqueId string External unique identifier of the original order (e.g. from the e-commerce platform).
OrderSplitted (XML)
<productionOrderSplitted>
  <orderId>...</orderId>
  <uniqueId>...</uniqueId>
  <childOrderIds>...</childOrderIds>
  <customReferences>...</customReferences>
  <childOrders/>
</productionOrderSplitted>