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.
| 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. |
{
"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" : [ { }, { } ]
}
} ]
}
}
}
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.
| 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). |
<productionOrderSplitted>
<orderId>...</orderId>
<uniqueId>...</uniqueId>
<childOrderIds>...</childOrderIds>
<customReferences>...</customReferences>
<childOrders/>
</productionOrderSplitted>