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 tracking number is added to a fulfillment.
Order ID (auto generated upon order creation).
ID of the newly created fulfillment.
Fulfillment creation date and time.
Buyer information.
Order fulfillment status.
Fulfillment tracking information.
The data payload will include the following as an encoded JWT:
{
"data": {
"eventType": "FulfillmentCreated",
"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",
"dateCreated": "2019-12-10T15:03:30.800Z",
"buyerInfo": {
"id": "aa3159c6-5d5c-4b1c-bcf1-6b0d9e5a3897",
"type": "CONTACT",
"identityType": "CONTACT",
"firstName": "John",
"lastName": "Israeli",
"phone": "0123456789",
"email": "John.Israeli123@hotmail.com"
},
"fulfillmentStatus": "FULFILLED",
"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"
}
}