Deprecation Notice:
This webhook has been replaced with eCommerce Order With Fulfillments Updated Event and will be removed on September 4, 2024.
Triggered when a fulfillment is updated.
Order ID (auto generated upon order creation).
ID of the updated fulfillment.
Fulfillment tracking information.
The data payload will include the following as an encoded JWT:
{
"data": {
"eventType": "FulfillmentUpdated",
"instanceId": "<app-instance-id>",
"data": "<stringified-JSON>",
// The identity field is sent as a stringified JSON
"identity": {
"identityType": "<identityType>", // ANONYMOUS_VISITOR, MEMBER, WIX_USER, APP
"anonymousVisitorId": "<anonymousVisitorId>", // in case of ANONYMOUS_VISITOR
"memberId": "<memberId>", // in case of MEMBER
"wixUserId": "<wixUserId>", // in case of WIX_USER
"appId": "<appId>" // in case of APP
}
}
}
{
"orderId": "8234d6e7-d92f-4c0d-b973-8fadec29fa47",
"fulfillmentId": "ca4abdc6-ac46-430a-8db9-9c866fa11a50",
"trackingInfo": {
"trackingNumber": "1234-5678-9101-1121-3141-51",
"shippingProvider": "usps",
"trackingLink": "https://tools.usps.com/go/TrackConfirmAction.action?tLabels=1234-5678-9101-1121-3141-51"
}
}