OrderProcessingError Data Type

An error recorded during automated order processing. Use this to diagnose why an order failed to advance through the manufacturing pipeline.

Available Since
1.4.65
Properties
Name Type Description
error string Error message.
orderId number Identifier of the production order that encountered the processing error.
uniqueId string External unique identifier of the order (e.g. from the e-commerce platform).
customReferences array of string Custom reference strings associated with the order at the time of the error.
OrderProcessingError (JSON)
{
  "productionOrderProcessingError" : {
    "error" : "...",
    "orderId" : 12345,
    "uniqueId" : "...",
    "customReferences" : [ "...", "..." ]
  }
}
OrderProcessingError Data Type

An error recorded during automated order processing. Use this to diagnose why an order failed to advance through the manufacturing pipeline.

Available Since
1.4.65
Properties
Name Type Description
customReferences list of string Custom reference strings associated with the order at the time of the error.
error string Error message.
orderId int Identifier of the production order that encountered the processing error.
uniqueId string External unique identifier of the order (e.g. from the e-commerce platform).
OrderProcessingError (XML)
<productionOrderProcessingError>
  <error>...</error>
  <orderId>...</orderId>
  <uniqueId>...</uniqueId>
  <customReferences>...</customReferences>
</productionOrderProcessingError>