Fulfillments update
Triggered when logistics information is updated.
Requires the order access scope. Minimum supported version: 202007.
Request headers
The event that triggered this delivery, e.g. orders/create
orders/createBase64-encoded HMAC-SHA256 signature of the request body, generated with your app's Client Secret. Use it to verify the request comes from Shoplazza
The domain of the store that generated the event
example.myshoplaza.comThe API version used to serialize the payload
2025-06Deduplication ID for this delivery. It stays the same across retries of the same event—use it for idempotency
Request body
- Schema
- Example
fulfillment object
idstringFulfillment ID
order_idstringOrder ID
statusstringFulfillment record status
created_atstringCreation time (i.e. shipment time)
updated_atstringLast update time
tracking_companystringLogistics company name. See
tracking_itemsfor multiple tracking numberstracking_company_codestringLogistics company code. See
tracking_itemsfor multiple tracking numberstracking_numberstringTracking number. See
tracking_itemsfor multiple tracking numberstracking_urlstringTracking URL. See
tracking_itemsfor multiple tracking numberstracking_items object[]
List of tracking items, supporting multiple tracking numbers
Array [tracking_companystringLogistics company name
tracking_company_codestringLogistics company code
tracking_numberstringTracking number
tracking_urlstringTracking URL
]line_items object[]
Products shipped in this fulfillment
Array [idstringLine item ID
product_idstringProduct ID
product_titlestringProduct title
product_handlestringProduct handle
product_urlstringProduct URL
variant_idstringVariant ID
variant_titlestringVariant title
skustringVariant SKU
spustringProduct SPU
quantityintegerQuantity purchased
shipped_quantityintegerQuantity shipped in this fulfillment
pricestringProduct unit price
compare_at_pricestringProduct compare-at unit price
totalstringLine total (unit price x quantity)
duty_pricestringTotal duty
payment_discount_pricestringAllocated payment discount amount
discount_applicationsstringDiscount details
fulfillment_statusstringFulfillment status
requires_shippingbooleanWhether the item requires shipping
weightstringProduct weight
weight_unitstringWeight unit
imagestringProduct image URL
notestringProduct note
vendorstringVendor
custom_propertiesobjectCustom properties of the product
properties object[]
Variant option properties
Array [namestringOption property name (e.g., Color)
valuestringOption property value (e.g., Red)
]main_currency_prices object
Amounts in the primary-market currency
actual_ratestringExchange rate of the primary-market currency against the order currency (e.g., 7.25 means 1 unit of the primary-market currency equals 7.25 units of the order currency)
compare_at_pricestringThe compare-at (original) unit price converted to the primary-market currency
pricestringThe unit selling price converted to the primary-market currency
totalstringThe line total (unit price x quantity) converted to the primary-market currency
refund_quantityintegerdeprecatedQuantity of the most recent refund request (refund events only). (Deprecated: do not use.)
refund_totalstringdeprecatedCumulative refunded item amount (refund events only). (Deprecated: do not use.)
]
{
"fulfillment": {
"id": "string",
"order_id": "string",
"status": "string",
"created_at": "string",
"updated_at": "string",
"tracking_company": "string",
"tracking_company_code": "string",
"tracking_number": "string",
"tracking_url": "string",
"tracking_items": [
{
"tracking_company": "string",
"tracking_company_code": "string",
"tracking_number": "string",
"tracking_url": "string"
}
],
"line_items": [
{
"id": "string",
"product_id": "string",
"product_title": "string",
"product_handle": "string",
"product_url": "string",
"variant_id": "string",
"variant_title": "string",
"sku": "string",
"spu": "string",
"quantity": 0,
"shipped_quantity": 0,
"price": "string",
"compare_at_price": "string",
"total": "string",
"duty_price": "string",
"payment_discount_price": "string",
"discount_applications": "string",
"fulfillment_status": "string",
"requires_shipping": true,
"weight": "string",
"weight_unit": "string",
"image": "string",
"note": "string",
"vendor": "string",
"custom_properties": {},
"properties": [
{
"name": "string",
"value": "string"
}
],
"main_currency_prices": {
"actual_rate": "string",
"compare_at_price": "string",
"price": "string",
"total": "string"
}
}
]
}
}