JavaScript
Properties
When to Fire
- When warehouse marks order as packed/ready
- When Shopify fulfillment is created
- When all items in an order are fulfilled
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Track when an order has been completely fulfilled (all items prepared for shipment).
window._upstack('track', 'order_fulfilled', {
orderId: 'ORD_12345',
orderName: '#1042',
value: 149.99,
currency: 'USD',
fulfillmentStatus: 'fulfilled',
items: [
{
id: 'SKU_001',
name: 'Monthly Snack Box',
price: 39.99,
quantity: 1
}
],
email: 'customer@example.com'
});
| Property | Type | Required | Description |
|---|---|---|---|
| orderId | string | Yes | Order identifier |
| orderName | string | No | Human-readable order name |
| value | number | No | Order value |
| currency | string | No | ISO 4217 currency code |
| fulfillmentStatus | string | No | Fulfillment status (e.g., 'fulfilled', 'partial') |
| items | array | No | Products fulfilled |
| string | No | Customer email |
Was this page helpful?