Fulfillment (order shipment)
Describes an outbound fulfillment: the order reference (orderName), shipped lines (sku + qty), tracking (carrier, number, URL), and whether to notify the customer. Used in flows that create shipments or update order logistics.
Full JSON example
{
"orderName": "#1049",
"lineItems": [
{
"sku": "0001BK",
"qty": 1
}
],
"trackingInfo": {
"company": "UPS",
"number": "1Z001985YW99744790",
"url": "https://www.myshipping.com/track/?tracknumbers=TRACKING_NUMBER"
},
"notifyCustomer": true
}
Notes
- The JSON asset is named
fullfillment.json(filename spelling); the concept is fulfillment. lineItemsties quantities to SKUs being fulfilled.trackingInfo.urlmay be a template URL as in the sample.